Plane Constructor (Point3d, Vector3d, Vector3d)

Plane Constructor (Point3d, Vector3d, Vector3d)

Constructs a plane from a point and two vectors in the plane.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Syntax
public Plane(
	Point3d origin,
	Vector3d xDirection,
	Vector3d yDirection
)
Public Sub New ( 
	origin As Point3d,
	xDirection As Vector3d,
	yDirection As Vector3d
)

Parameters

origin
Type: Rhino.GeometryPoint3d
Origin point of the plane.
xDirection
Type: Rhino.GeometryVector3d
Non-zero vector in the plane that determines the x-axis direction.
yDirection
Type: Rhino.GeometryVector3d
Non-zero vector not parallel to x_dir that is used to determine the yaxis direction. y_dir does not need to be perpendicular to x_dir.
Version Information

Rhino for Mac

Supported in: 5.4

Rhino for Windows

Supported in: 6.8
See Also