True if two vectors are considered equal.

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

Syntax

C#
public static bool operator ==(
	Vector3d left,
	Vector3d right
)
Visual Basic (Declaration)
Public Shared Operator = ( _
	left As Vector3d, _
	right As Vector3d _
) As Boolean
Visual C++
public:
static bool operator ==(
	Vector3d^ left, 
	Vector3d^ right
)

Parameters

left
Type: ceometric.VectorGeometry..::.Vector3d
A first 3d vector.
right
Type: ceometric.VectorGeometry..::.Vector3d
A second 3d vector.

Return Value

Returns true if two 3d vectors are considered equal, false otherwise.

Remarks

Two 3d vectors are considered equal if each coordinate of one 3d vectors AlmostEquals(Double, Double) the respective coordinate of the other 3d vectors.

The result of this test depends on the settings of the AbsoluteEpsilon variable.

See Also