Hi,
I’m looking for a way to script ShrinkTrimmedSrf.
How would I mimick the functionality with RhinoCommon?
Thanks
-Willem
Hi,
I’m looking for a way to script ShrinkTrimmedSrf.
How would I mimick the functionality with RhinoCommon?
Thanks
-Willem
Hi Willem,
Use the ShrinkFaces method:
brepFaces = brep.Faces
brepFaces.ShrinkFaces()
It will shrink all the faces of the brep in-place.
Thanks! this will probably save me quite some time debugging.
-Willem