ArcObjects: Intersect feature class with polygon

276 Views Asked by At

I have feature class with polylines. I need to intersect the circle polygon.

ITopologicalOperator3 topOperator = (ITopologicalOperator3)pPoly;
topOperator.IsKnownSimple_2 = false;
topOperator.Simplify();
IGeometry resultGeom = topOperator.Intersect(polyline2, esriGeometryDimension.esriGeometry1Dimension);

it gives me result in complete different place.

input output: input output

0

There are 0 best solutions below