Mirroring a curve in Rhinoscript

Hi.

I need to do some mirroring with Rhinoscript. I am trying with the Rhino.command “_Mirror …”. Trying to build the first parameter, 3Point, I ask myself one question: Do I need an array with 3 points or a plane? I think the first answer is the right one, but I don’t know how to build that array. Any suggestion will be greatly appreciated.

Thanks in advance.

Hi Miguel- use Rhino.MirrorIObect() and Rhino.MirrorObject() for this. In the Rhino command, you need a point as a string (Rhino.Pt2Str) if you are going to do things that way.

-Pascal