Hi, and thanks for help, is there any python script to extract the mid point of multiple open curves as a point?
by multiple curves I mean as a single command, tried this but it gives an error:
import rhinoscriptsyntax as rs
object = rs.GetObject(“Select a curve”)
if rs.IsCurve(object):
point = rs.CurveMidPoint(pbject)
rs.AddPoint( point )