CADability dotNET
Determins, whether the given points are almost identical, i.e. the distance of the points is less than eps.

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

Syntax

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

Parameters

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

Return Value

true: almost identical, false: different

See Also