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

Return Value

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

Remarks

Two ellipses are considered equal if they contain the same points. Two ellipses containing the same points may have a different (but parallel) normal vector and differently orientated axes.

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

See Also