Constructs a plane from a point and two direction vectors.

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

Syntax

C#
public Plane(
	Point point,
	Vector3d directionVector1,
	Vector3d directionVector2
)
Visual Basic (Declaration)
Public Sub New ( _
	point As Point, _
	directionVector1 As Vector3d, _
	directionVector2 As Vector3d _
)
Visual C++
public:
Plane(
	Point^ point, 
	Vector3d^ directionVector1, 
	Vector3d^ directionVector2
)

Parameters

point
Type: ceometric.VectorGeometry..::.Point
A point on the plane.
directionVector1
Type: ceometric.VectorGeometry..::.Vector3d
A direction vector of the plane.
directionVector2
Type: ceometric.VectorGeometry..::.Vector3d
A direction vector of the plane.

Exceptions

ExceptionCondition
System..::.ArgumentExceptionThe direction vectors are parallel.

See Also