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

Parameters

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

Return Value

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

Remarks

Two arcs are considered equal if they have the same center, start point, normal vector and opening angle.

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

See Also