Properties
d
normal
Methods
assign
-
Sets this plane equal to another plane
Parameters
-
plane: Plane
the plane to assign
Returns void
-
copy
-
Creates a copy of this plane
Returns Plane
a copy of this plane object
determineSide
-
Returns true if the point is on the side of the plane that the plane's normal is directed. Returns false otherwise.
Parameters
-
p: Point3
The point to test.
Returns boolean
-
distanceToPoint
-
Parameters
-
point: Point3
Returns number
-
equals
-
Returns true if the normal and d value are the same.
Parameters
-
plane: Plane
Returns boolean
-
getCoefficients
-
Returns [number, number, number, number]
intersectsRay
rayIntersection
setFromCoefficients
-
Parameters
-
a: number
-
b: number
-
c: number
-
d: number
Returns void
-
setFromPointAndNormal
setFromPoints
Static createFromCoefficients
-
Parameters
-
a: number
-
b: number
-
c: number
-
d: number
Returns Plane
-
Object representing a Plane.