Hello
I have this:
import rhinoscriptsyntax as rs
id = rs.GetObject(“Select a curve”)
if id:
point = rs.GetPoint()
if point:
param = rs.CurveClosestPoint(id, point)
print "Curve parameter:", param
This return the parameter on curve closest from point, I need to Know
The coordinates xyz of this parameter curve, how I get this?
Thanks