Hi! All,
Dim a: a = rhino.GetObject("Sel Axs")
Call rhino.Command("Mirror " & rhino.CurveStartPoint(a) & " " & rhino.CurveEndPoint(a))
why doesn’t it work?
thanks!
Hi! All,
Dim a: a = rhino.GetObject("Sel Axs")
Call rhino.Command("Mirror " & rhino.CurveStartPoint(a) & " " & rhino.CurveEndPoint(a))
why doesn’t it work?
thanks!
Ciao Salvio
I think ( from the very little I remember about VBS ) that points should be converted to strings by Rhino.Pt2Str.
Also … doesn’t Mirror ask first for the objects to transform ?
Anyway … this seems to work, here
Dim a: a = rhino.GetObject("Sel Axs")
Call rhino.Command("Mirror Pause " & rhino.Pt2Str(rhino.CurveStartPoint(a)) & " " & rhino.Pt2Str(rhino.CurveEndPoint(a)))
HTH
Ciao Emilio
thanks for the solution
you are always a certainty
even on vacation days
ps HTH?
( I ) Hope This Helps