Constructs a 3d coordinate system from a plane.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public CoordinateSystem(
	Plane plane
)
Visual Basic (Declaration)
Public Sub New ( _
	plane As Plane _
)
Visual C++
public:
CoordinateSystem(
	Plane^ plane
)

Parameters

plane
Type: ceometric.VectorGeometry..::.Plane
A plane defining the coordinate system.

Remarks

The origin of the coordinate system is the Point of the plane.

The DirectionVector1 is the first basis vector (x-axis) of the coordinate system.

The DirectionVector2 is the second basis vector (y-axis) of the coordinate system.

The NormalVector is the third basis vector (z-axis) of the coordinate system.

See Also