CADability dotNET
Determins, whether the two planes are almost identical, i.e. the angular difference is less than epsa and the distance of then location of p2 to the plane p1 is less than eps. The DirectionX, DirectionY and Location properties of the two planes may be completely different, the two coordinate systems of the planes may be different.

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

Syntax

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

Parameters

p1
Type: CADability..::..Plane
first plane
p2
Type: CADability..::..Plane
second plane

Return Value

See Also