diff --git a/docs/api/math/Plane.html b/docs/api/math/Plane.html index 80b48124773c7d58387b073e1cff1051bdd9a302..51c1aa689ba0113933da3bdd61664fd7b0230bf4 100644 --- a/docs/api/math/Plane.html +++ b/docs/api/math/Plane.html @@ -12,7 +12,7 @@
A two dimensional surface that extends infinitely in 3d space, represented in [link:http://mathworld.wolfram.com/HessianNormalForm.html Hessian normal form] - by a normal vector and a constant. + by a unit length normal vector and a constant.
@@ -21,7 +21,7 @@

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

- [page:Vector3 normal] - (optional) a [page:Vector3] defining the normal of the plane. Default is *(1, 0, 0)*.
+ [page:Vector3 normal] - (optional) a unit length [page:Vector3] defining the normal of the plane. Default is *(1, 0, 0)*.
[page:Float constant] - (optional) the signed distance from the origin to the plane. Default is *0*.
@@ -130,7 +130,7 @@

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

- [page:Vector3 normal] - a [page:Vector3] defining the normal of the plane.
+ [page:Vector3 normal] - a unit length [page:Vector3] defining the normal of the plane.
[page:Float constant] - the signed distance from the origin to the plane. Default is *0*.

Sets the plane's [page:.normal normal] and [page:.constant constant] properties. @@ -138,9 +138,9 @@

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

- [page:Float x] - x value of the normal vector.
- [page:Float y] - y value of the normal vector.
- [page:Float z] - z value of the normal vector.
+ [page:Float x] - x value of the unit length normal vector.
+ [page:Float y] - y value of the unit length normal vector.
+ [page:Float z] - z value of the unit length normal vector.
[page:Float w] - the value of the plane's [page:.constant constant] property.

Set the individual components that define the plane. @@ -158,7 +158,7 @@

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

- [page:Vector3 normal] - a [page:Vector3] defining the normal of the plane.
+ [page:Vector3 normal] - a unit length [page:Vector3] defining the normal of the plane.
[page:Vector3 point] - [page:Vector3]

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