Returns a plane based on the normal, u, and v directions at a given surface U,V parameter.
Rhino.SurfaceFrame (strObject, arrParameter)
strObject |
Required. String. The object's identifier. |
arrParameter |
Required. Array. An array containing the U,V parameter to evaluate. |
Array |
The plane at the specified parameter if successful. |
Null |
If not successful, or on error. |
Dim arrSurface, arrPlane
arrSurface = Rhino.GetSurfaceObject("Select a surface")
If IsArray(arrSurface) Then
arrPlane = Rhino.SurfaceFrame(arrSurface(0),arrSurface(4))
Rhino.ViewCPlane , arrPlane
End If