Subtracts two vectors.
Namespace:
ceometric.VectorGeometryAssembly: ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)
Syntax
C# |
---|
public static Vector3d operator -( Vector3d left, Vector3d right ) |
Visual Basic (Declaration) |
---|
Public Shared Operator - ( _ left As Vector3d, _ right As Vector3d _ ) As Vector3d |
Visual C++ |
---|
public: static Vector3d^ operator -( Vector3d^ left, Vector3d^ right ) |
Parameters
- left
- Type: ceometric.VectorGeometry..::.Vector3d
A 3d vector to subtracts from.
- right
- Type: ceometric.VectorGeometry..::.Vector3d
A 3d vector to subtract.
Return Value
Returns the difference of two 3d vectors.
Remarks
Subtracting two 3d vectors means subtracting each coordinate of right
from the respective coordinate of left.