Creating a new crv from a set of intersected crvs // GHpython

I am new to python, so apologize first for being naive.

Currently trying to find a way to use GHpython for creating a new crv from a set of intersected crvs.

img attached

You are looking for the equivalent of the CurveBoolean command, and there is currently no easy way to do this programmatically.

If you are using the Rhino WIP (v7), you can use the RhinoCommon function Curve.CreateBooleanRegions

See also

1 Like

Give this a try.

CurveRegionDifferece_Python.gh (3.5 KB)

2 Likes

Thx !