Represents a section bounded by a specific amount of half-edges. The current implmentation assumes that a face always consist of three edges.
The normal vector of the face. Default is a [page:Vector3] at (0, 0, 0).
The midpoint or centroid of the face. Default is a [page:Vector3] at (0, 0, 0).
The area of the face. Default is 0.
Signed distance from face to the origin. Default is 0.
Reference to a vertex in a vertex list this face can see. Default is null.
Marks if a face is visible or deleted. Default is 'Visible'.
Reference to the base edge of a face. To retrieve all edges, you can use the 'next' reference of the current edge. Default is null.
Creates a face.
Returns an edge by the given index.
Computes all properties of the face.
Returns the signed distance from a given point to the plane representation of this face.
[link:https://github.com/mrdoob/three.js/blob/master/examples/js/math/ConvexHull.js examples/js/math/ConvexHull.js]