Tests if two circles 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 override bool Equals(
	Object obj
)
Visual Basic (Declaration)
Public Overrides Function Equals ( _
	obj As Object _
) As Boolean
Visual C++
public:
virtual bool Equals(
	Object^ obj
) override

Parameters

obj
Type: System..::.Object
A Circle object.

Return Value

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

Remarks

Two circles are considered equal if they contain the same points. Two circles containing the same points may have a different (but parallel) normal vector.

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

See Also