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