首页 > 代码库 > IGeometryPolygon转为ILineElement

IGeometryPolygon转为ILineElement

画一个面并得到缓冲区后的ipGeometryPolygon可以通过获取边界的方式转换为ipLineElement,代码如下 :
        IGeometryPtr ipGeometryBoundry ;
        ITopologicalOperatorPtr ipTopologicalOperator( ipGeometryPolygon);
        ipTopologicalOperator->get_Boundary (& ipGeometryBoundry);
        ILineElementPtr ipLineElement ( CLSID_LineElement);
        IElementPtr ipElement ( ipLineElement);
        ipElement ->put_Geometry (ipGeometryBoundry);