Gets or sets the three basis vectors.
Namespace:
ceometric.VectorGeometryAssembly: ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)
Syntax
C# |
---|
public List<Vector3d> BasisVector { get; set; } |
Visual Basic (Declaration) |
---|
Public Property BasisVector As List(Of Vector3d) |
Visual C++ |
---|
public: property List<Vector3d^>^ BasisVector { List<Vector3d^>^ get (); void set (List<Vector3d^>^ value); } |
Field Value
The basis vector list.
Remarks
In this list, it is
- BasisVector[0]: the basis vector of the x-coordinates
- BasisVector[1]: the basis vector of the y-coordinates
- BasisVector[2]: the basis vector of the z-coordinates
Exceptions
Exception | Condition |
---|---|
System..::.ArgumentException | More than 3 basis vectors have been added to the basis. |
System..::.ArgumentException | The three basis vectors are linearly dependent. |