Hi all,
I found a difference between using GH in Mac and windows.
I have a couple python blocks to join curves inside GH.
import rhinoscriptsyntax as rs
try:
Joined = rs.JoinCurves(Curves,False,Tolerance)
except:
Joined = Curves
it’s just a quick command to bypass when the join curves fail because of tolerance issues.
in windows it works fine, but in the Mac, it works but it also bakes the curves into rhino.
any ideas on how to stop it baking?
I use the same python block to join surfaces for the same reason and with surfaces it doesn’t bake the surfaces.
Thanks