Hi!
i am using “rs.CurveClosestPoint” and i was expecting to get a point as the result but what I get is a float not a point does anyone know what is going wrong?
Hi!
i am using “rs.CurveClosestPoint” and i was expecting to get a point as the result but what I get is a float not a point does anyone know what is going wrong?
You can use rs.EvaluateCurve(param)
to get the point at the curve parameter returned by rs.CurveClosestPoint(point)
.
Thank you for the help. I tried the script but it is asking for a second parameter which i do not know what it can be.
This is a good example of when/why to just implement RhinoCommon directly:
Right, if you input guids you’ll need to implement rhinoscriptsyntax
wrapper functions:
@AndersDeleuran Thank you so much