Gets or sets the first 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 DirectionVector1 { get; set; }
Visual Basic (Declaration)
Public Property DirectionVector1 As Vector3d
Visual C++
public:
property Vector3d^ DirectionVector1 {
	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 DirectionVector1 is zero.
System..::.ArgumentExceptionDirectionVector1 is parallel to DirectionVector2.

See Also