|
Plane3 Constructor (Point3, Vector3, Vector3)
|
Initializes a new instance of the
Plane3 class.
Constructs a plane from a point and two vectors in the plane.
Namespace:
Karamba.Geometry
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic Plane3(
Point3 origin,
Vector3 xDirection,
Vector3 yDirection
)
Public Sub New (
origin As Point3,
xDirection As Vector3,
yDirection As Vector3
)
public:
Plane3(
Point3 origin,
Vector3 xDirection,
Vector3 yDirection
)
new :
origin : Point3 *
xDirection : Vector3 *
yDirection : Vector3 -> Plane3
Parameters
- origin
- Type: Karamba.GeometryPoint3
Origin point of the plane. - xDirection
- Type: Karamba.GeometryVector3
Non-zero vector in the plane that determines the x-axis direction. - yDirection
- Type: Karamba.GeometryVector3
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.
See Also