[name]

A two dimensional surface that extends infinitely in 3d space.

Constructor

[name]([page:Vector3 normal], [page:Float constant])

normal -- ([Page:Vector3]) normal vector defining the plane pointing towards the origin
constant -- ([Page:Float]) the negative distance from the origin to the plane along the normal vector

Properties

[property:Vector3 normal]

[property:Float constant]

Methods

[method:Plane normalize]() [page:Plane this]

Normalizes the normal vector, and adjusts the constant value accordingly.

[method:Plane set]([page:Vector3 normal], [page:Float constant]) [page:Plane this]

normal -- [Page:Vector3]
constant -- [Page:Float]
Sets the plane's values.

[method:Plane copy]([page:Plane plane]) [page:Plane this]

plane -- [page:Plane] to copy
Copies the values of the passed plane to this plane.

[method:Plane applyMatrix4]([page:Matrix4 matrix], [page:Matrix3 optionalNormalMatrix]) [page:Plane this]

matrix -- [Page:Matrix4] to apply
optionalNormalMatrix -- (optional) pre-computed normal [Page:Matrix3] of the Matrix4 to apply
Apply a Matrix4 to the plane. The second parameter is optional. var optionalNormalMatrix = new THREE.Matrix3().getNormalMatrix( matrix )

[method:Vector3 orthoPoint]([page:Vector3 point], [page:Vector3 optionalTarget])

point -- [page:Vector3]
optionalTarget -- [page:Vector3]
Returns a vector in the same direction as the Plane's normal, but the magnitude is passed point's original distance to the plane.

[method:Boolean isIntersectionLine]([page:Line3 line])

line -- [page:Line3]
Tests whether a line segment intersects with the plane. (Do not mistake this for a collinear check.)

[method:Vector3 intersectLine]([page:Line3 line], [page:Vector3 optionalTarget]) or [page:undefined]

line -- [page:Line3]
optionalTarget -- [page:Vector3]
Returns the intersection point of the passed line and the plane. Returns undefined if the line does not intersect. Returns the line's starting point if the line is coplanar with the plane.

[method:Vector3 setFromNormalAndCoplanarPoint]([page:Vector3 normal], [page:Vector3 point]) [page:Vector3 this]

normal -- [page:Vector3]
point -- [page:Vector3]
Sets the plane's values as defined by a normal and arbitrary coplanar point.

[method:Plane clone]()

Returns a new copy of this plane.

[method:Float distanceToPoint]([page:Vector3 point])

point -- [page:Vector3]
Returns the smallest distance from the point to the plane.

[method:Boolean equals]([page:Plane plane])

plane -- [page:Planen]
Checks to see if two planes are equal (their normals and constants match)

[method:Plane setComponents]([page:Float x], [page:Float y], [page:Float z], [page:Float w]) [page:Plane this]

x -- [page:Float] x of the normal vector
y -- [page:Float] y of the normal vector
z -- [page:Float] z of the normal vector
w -- [page:Float] distance of the plane from the origin along the normal vector
Set the individual components that make up the plane.

[method:Float distanceToSphere]([page:Sphere sphere])

sphere -- [Page:Sphere]
Returns the smallest distance from an edge of the sphere to the plane.

[method:Plane setFromCoplanarPoints]([page:Vector3 a], [page:Vector3 b], [page:Vector3 c]) [page:Plane this]

a -- [page:Vector3]
b -- [page:Vector3]
c -- [page:Vector3]
Defines the plane based on the 3 provided points. The winding order is counter clockwise, and determines which direction the normal will point.

[method:Vector3 projectPoint]([page:Vector3 point], [page:Vector3 optionalTarget])

point -- [page:Vector3]
optionalTarget -- [page:Vector3]
Projects a point onto the plane. The projected point is the closest point on the plane to the passed point, so a line drawn from the projected point and the passed point would be orthogonal to the plane.

[method:Plane negate]() [page:Plane this]

Negates both the normal vector and constant, effectively mirroring the plane across the origin.

[method:Plane translate]([page:Vector3 offset]) [page:Plane this]

offset -- [page:Vector3]
Translates the plane the distance defined by the vector. Note that this only affects the constant (distance from origin) and will not affect the normal vector.

[method:Vector3 coplanarPoint]([page:Vector3 optionalTarget])

optionalTarget -- [page:Vector3]
Returns a coplanar point. (The projection of the normal vector at the origin onto the plane.)

Source

[link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]