I am trying to project a point to a brep with Rhinocommon, but am I doing wrong?
Thank you for your response.
problem project point rhinocommon.gh (14.9 KB)
I am trying to project a point to a brep with Rhinocommon, but am I doing wrong?
Thank you for your response.
problem project point rhinocommon.gh (14.9 KB)
ProjectPointsToBreps needs a list of Brep
s and a list of Point3d
s to work properly.
import Rhino.Geometry as rg
import scriptcontext as sc
tolerance = sc.doc.ModelAbsoluteTolerance
a =rg.Intersect.Intersection.ProjectPointsToBreps([x],[y[0]],y[1],tolerance)
ForestOwl.gh (18.0 KB)