Plane
- class Plane()
Object representing a Plane.
Constructors
Methods
Constructors
- Plane.constructor()
- Return type
Plane
Properties
- Plane.d
- Type
number
- Plane.normal
- Type
Point3
Methods
assign
copy
- Plane.copy()
Creates a copy of this plane
- Returns
a copy of this plane object
- Return type
Plane
determineSide
distanceToPoint
equals
getCoefficients
- Plane.getCoefficients()
- Return type
(number, number, number, number)
intersectsRay
rayIntersection
setFromCoefficients
- Plane.setFromCoefficients(a, b, c, d)
- Arguments
a (
number()
) – Noneb (
number()
) – Nonec (
number()
) – Noned (
number()
) – None
- Return type
void
setFromPointAndNormal
setFromPoints
static createFromCoefficients
- Plane.createFromCoefficients(a, b, c, d)
- Arguments
a (
number()
) – Noneb (
number()
) – Nonec (
number()
) – Noned (
number()
) – None
- Return type
Plane