Evaluates a plane at a U,V parameter.
Rhino.EvaluatePlane (arrPlane, arrParameter)
arrPlane |
Required. Array. The plane. The elements of a plane array are as follows:
|
||||||||||
arrParameter |
Required. Array. An array containing the U,V parameter to evaluate. |
Array |
The 3-D point if successful. |
Null |
If not successful, or on error. |
Dim strView, arrPlane, arrPoint
strView = Rhino.CurrentView
arrPlane = Rhino.ViewCPlane(strView)
arrPoint = Rhino.EvaluatePlane(arrPlane, Array(5,5))
Rhino.AddPoint arrPoint