Convert surface to plane!

Hi All,

How can I convert surface to mirror plane?

Thanks,

HI @Naveen0116
You could either
-use three of the points you used to create the surface to create a plane with Plane.ByThreePoints
-get the mid point of your surface (Surface.PointAtParameter) and normal at the same parameter (Surface.NormalAtParameter) then use them to create a plane with Plane.ByOriginNormal .

4 Likes

Thanks Mostafa!

No problem ! :slight_smile:

1 Like