Click or drag to resize

PlaneEquals Method (Plane, Double, Double)

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: 2024.1.1.0 (2024.1.1.0)
Syntax
C#
public bool Equals(
	Plane p,
	double normalEpsilon,
	double distanceEpsilon
)

Parameters

p
Type: NeoAxisPlane
The plane to compare.
normalEpsilon
Type: SystemDouble
The precision value for the plane normal.
distanceEpsilon
Type: SystemDouble
The precision value for the distance component of the plane.

Return Value

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