EvaluatePlane

Evaluates a plane at a U,V parameter.

Syntax

rhinoscriptsyntax.EvaluatePlane (plane, parameter)

rhinoscript.plane.EvaluatePlane (plane, parameter)

Parameters

plane

Required.  The plane.

parameter

Required.  List.  A list containing the U,V parameter to evaluate.

Returns

Point3d

The 3-D point if successful.

None

If not successful, or on error.

Example

import rhinoscriptsyntax as rs

view = rs.CurrentView()

plane = rs.ViewCPlane(view)

point = rs.EvaluatePlane(plane, (5,5))

rs.AddPoint( point )

Also See

PlaneClosestPoint