Constructor
The A coefficient of the plane equation
The B coefficient of the plane equation
The C coefficient of the plane equation
The D coefficient of the plane equation
Returns true if the planes are equal.
Returns the distance between the give point and this plane
Returns the square of the distance from the point to the plane
The square of the distance is relatively fast to compute (no \a sqrt) and is useful for determine which side the point is on. To obtain the actual distance, divide by sqrt(A^2 + B^2 + C^2) or use the distance() function directly.
Returns the distance between the give point and this plane
Generated using TypeDoc
An immutable plane.
The class describes a plane by the equation: Ax + By + Cz + D = 0 The plane's normal is defined by the coefficients [A, B, C]