Gets or sets the second direction vector of the plane.

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

Syntax

C#
public Vector3d DirectionVector2 { get; set; }
Visual Basic (Declaration)
Public Property DirectionVector2 As Vector3d
Visual C++
public:
property Vector3d^ DirectionVector2 {
	Vector3d^ get ();
	void set (Vector3d^ value);
}

Field Value

A direction vector of the plane.

Remarks

A different direction vector also changes the normal vector NormalVector and the value of the right side d of the coordinate form of the plane.

Exceptions

ExceptionCondition
System..::.ArgumentExceptionThe length of DirectionVector2 is zero.
System..::.ArgumentExceptionDirectionVector2 is collinear to DirectionVector1.

See Also