IGeometryPolygon转为ILineElement

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

posted on 2014-08-07 18:36  icyber  阅读(184)  评论(0)    收藏  举报