Mirror point axes

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 :slight_smile:

thanks for the solution
you are always a certainty
even on vacation days :+1:

ps HTH?

( I ) Hope This Helps :grinning: