Click or drag to resize

PlaneEquals(Plane, Double, Double) Method

Determines whether the specified plane is equal to the current instance of Plane with the given normal and distance precisions.

Namespace: NeoAxis
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
public bool Equals(
	Plane p,
	double normalEpsilon,
	double distanceEpsilon
)

Parameters

p  Plane
The plane to compare.
normalEpsilon  Double
The precision value for the plane normal.
distanceEpsilon  Double
The precision value for the distance component of the plane.

Return Value

Boolean
True if the specified plane is equal to the current instance of Plane; False otherwise.
See Also