I was hoping to user the GeometryEngine.Instance.Clip function to process numerous polygons but i need to be able clip each polygon with the one after it. Unfortunately, the Clip function only takes one geometry and the other is an envelope. I need to be able to pass in two geometries. Anyone have an alternative suggestion?
Solved! Go to Solution.
Why don't you use Intersection instead?
Geometry pOutGeometry = GeometryEngine.Instance.Intersection(polygon1,
polygon2, GeometryDimensionType.EsriGeometry2Dimension);
sounds like u need Geometry.Engine.Difference
https://pro.arcgis.com/en/pro-app/latest/sdk/api-reference/topic8216.html
Intersection did the trick.