can rhino find overlaps ?
thnx!
Hello - does Intersect
find anything?
-Pascal
it actually helps!
don’t know why I didn’t think of it
edit: its definitely a cool way to use _Intersect
thnx again @pascal
It won’t detect those as that is an overlap within a single curve (self-intersecting) and not between two or more curves. There is no provision for detecting these types of overlaps in the script. Rhino itself has a hard time finding it, you need a script to detect the self-intersection.
As the curve in question is closed, running CurveBoolean on it will fix it in this case.
–Mitch
rgt! it actually works (I just forgot to explode the plan)
thnx again Mitch!