CADability dotNET
Returns true if the distance of each point from p to c is less than eps.

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

Syntax

C#
public static bool IsEqual(
	GeoPoint2D c,
	params GeoPoint2D[] p
)
Visual Basic
Public Shared Function IsEqual ( _
	c As GeoPoint2D, _
	ParamArray p As GeoPoint2D() _
) As Boolean
Visual C++
public:
static bool IsEqual(
	GeoPoint2D c, 
	... array<GeoPoint2D>^ p
)

Parameters

c
Type: CADability..::..GeoPoint2D
the center to test to
p
Type: array<CADability..::..GeoPoint2D>[]()[][]
points to test

Return Value

true if all points are close, false otherwise

See Also