Transforms a point from construction plane coordinates to world coordinates.
rhinoscriptsyntax.XformCPlaneToWorld (point, plane)
rhinoscript.transformation.XformCPlaneToWorld (point, plane)
point |
Required. List of 3 numbers or Point3d. A 3-D point in construction plane coordinates. |
||||||||||
plane |
Required. List or Plane. The construction plane. If a list, the elements of a plane array are as follows:
|
Point3d |
A 3-D point in world coordinates if successful. |
None |
If not successful, or on error. |
import rhinoscriptsyntax as rs
plane = rs.ViewCPlane()
point = rs.XFormCPlaneToWorld([0,0,0], plane)
if point: print "World point: ", point