Evaluates a plane at a U,V parameter.
rhinoscriptsyntax.EvaluatePlane (plane, parameter)
rhinoscript.plane.EvaluatePlane (plane, parameter)
plane |
Required. The plane. |
parameter |
Required. List. A list containing the U,V parameter to evaluate. |
Point3d |
The 3-D point if successful. |
None |
If not successful, or on error. |
import rhinoscriptsyntax as rs
view = rs.CurrentView()
plane = rs.ViewCPlane(view)
point = rs.EvaluatePlane(plane, (5,5))
rs.AddPoint( point )