Click or drag to resize

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)
Since: 5.0
Syntax
public Plane(
	Point3d origin,
	Vector3d xDirection,
	Vector3d yDirection
)

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 y-axis direction. y_dir does not need to be perpendicular to x_dir.
See Also