Creates a plane from three non-colinear points.
Rhino.PlaneFromPoints (arrOrigin, arrPointX, arrPointY)
arrOrigin |
Required. Array. The first point, or origin, of the plane. |
arrPointX |
Required. Array. A point on the plane's X axis. |
arrPointY |
Required. Array. A point on the plane's Y axis. |
Array |
The plane if successful. The elements of a plane array are as follows:
|
||||||||||
Null |
If not successful, or on error. |
Dim arrCorners
arrCorners = Rhino.GetRectangle
If IsArray(arrCorners) Then
Rhino.ViewCPlane , Rhino.PlaneFromPoints(arrCorners(0), arrCorners(1), arrCorners(3))
End If