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(
	GeoPoint c,
	params GeoPoint[] p
)
Visual Basic
Public Shared Function IsEqual ( _
	c As GeoPoint, _
	ParamArray p As GeoPoint() _
) As Boolean
Visual C++
public:
static bool IsEqual(
	GeoPoint c, 
	... array<GeoPoint>^ p
)

Parameters

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

Return Value

true if all points are close, false otherwise

See Also