True if two edges 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 ==(
	Edge left,
	Edge right
)
Visual Basic (Declaration)
Public Shared Operator = ( _
	left As Edge, _
	right As Edge _
) As Boolean
Visual C++
public:
static bool operator ==(
	Edge^ left, 
	Edge^ right
)

Parameters

left
Type: ceometric.VectorGeometry..::.Edge
A first Edge.
right
Type: ceometric.VectorGeometry..::.Edge
A second Edge.

Return Value

Returns true if two edges are considered equal, false otherwise.

Remarks

Two edges are considered equal if they contain the same points. This is, two equal edges may have interchanged start and end points.

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

See Also