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

Parameters

left
Type: ceometric.VectorGeometry..::.Point
A point.
right
Type: ceometric.VectorGeometry..::.Point
A point.

Return Value

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

Remarks

Two points are considered equal if each coordinate of one point AlmostEquals(Double, Double) the respective coordinate of the other point.

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

See Also