CADability dotNET
Determins whether two GeoPoints are exactly equal. Use IsEqual(GeoPoint, GeoPoint) if you need more control over precision.

Namespace: CADability
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
public static bool operator ==(
	GeoPoint p1,
	GeoPoint p2
)
Visual Basic
Public Shared Operator = ( _
	p1 As GeoPoint, _
	p2 As GeoPoint _
) As Boolean
Visual C++
public:
static bool operator ==(
	GeoPoint p1, 
	GeoPoint p2
)

Parameters

p1
Type: CADability..::..GeoPoint
first point
p2
Type: CADability..::..GeoPoint
secont point

Return Value

true if equal

See Also