Click or drag to resize

Plane3 Constructor (Point3, Vector3, Vector3)

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

Namespace:  Karamba.Geometry
Assembly:  KarambaCommon (in KarambaCommon.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public Plane3(
	Point3 origin,
	Vector3 xDirection,
	Vector3 yDirection
)

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