Curve parameter coodinates

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

Hi Ricardo,

On my phone so replying from memory:
rs.EvaluateCurve()

Does that help or am I wrong?

-Willem

Thank you , is perfect.

1 Like