[name]

General information about the Quickhull algorithm: Dirk Gregorius. March 2014, Game Developers Conference: [link:http://media.steampowered.com/apps/valve/2014/DirkGregorius_ImplementingQuickHull.pdf Implementing QuickHull].

Constructor

[name]()

Properties

[property:Float tolerance]

The epsilon value that is used for internal comparative operations. The calculation of this value depends on the size of the geometry. Default is -1.

[property:Array faces]

The generated faces of the convex hull. Default is an empty array.

[property:Array newFaces]

This array holds the faces that are generated within a single iteration. Default is an empty array.

[property:VertexList assigned]

This [page:VertexList vertex list] holds all vertices that are assigned to a face. Default is an empty vertex list.

[property:VertexList unassigned]

This [page:VertexList vertex list] holds all vertices that are not assigned to a face. Default is an empty vertex list.

[property:Array vertices]

The internal representation of the given geometry data (an array of [page:VertexNode vertices]).

Methods

[method:QuickHull setFromPoints]( [param:Array points] )

[page:Array points] - Array of [page:Vector3 Vector3s] that the resulting convex hull will contain.

Computes to convex hull for the given array of points.

[method:QuickHull setFromObject]( [param:Object3D object] )

[page:Object3D object] - [page:Object3D] to compute the convex hull of.

Computes the convex hull of an [page:Object3D] (including its children), accounting for the world transforms of both the object and its childrens.

[method:QuickHull makeEmpty]()

Makes this convex hull empty.

[method:QuickHull addVertexToFace]( [param:VertexNode vertex], [param:Face face] )

[page:VertexNodeNode vertex] - The vetex to add.

[page:Face face] - The target face.

Adds a vertex to the 'assigned' list of vertices and assigns it to the given face.

[method:QuickHull removeVertexFromFace]( [param:VertexNode vertex], [param:Face face] )

[page:VertexNode vertex] - The vetex to remove.

[page:Face face] - The target face.

Removes a vertex from the 'assigned' list of vertices and from the given face. It also makes sure that the link from 'face' to the first vertex it sees in 'assigned' is linked correctly after the removal.

[method:VertexNode removeAllVerticesFromFace]( [param:Face face] )

[page:Face face] - The given face.

Removes all the visible vertices that a given face is able to see which are stored in the 'assigned' vertext list.

[method:QuickHull deleteFaceVertices]( [param:Face face], [param:Face absorbingFace] )

[page:Face face] - The given face.

[page:Face absorbingFace] - An optional face that tries to absorb the vertices of the first face.

Removes all the visible vertices that 'face' is able to see.

[method:QuickHull resolveUnassignedPoints]( [param:Array newFaces] )

[page:Face newFaces] - An array of new faces.

Reassigns as many vertices as possible from the unassigned list to the new faces.

[method:Object computeExtremes]()

Computes the extremes values (min/max vectors) which will be used to compute the inital hull.

[method:QuickHull computeInitialHull]()

Computes the initial simplex assigning to its faces all the points that are candidates to form part of the hull.

[method:QuickHull reindexFaces]()

Removes inactive (e.g. deleted) faces from the internal face list.

[method:VertexNode nextVertexToAdd]()

Finds the next vertex to create faces with the current hull.

[method:QuickHull computeHorizon]( [param:Vector3 eyePoint], [param:HalfEdge crossEdge], [param:Face face], [param:Array horizon] )

[page:Vector3 eyePoint] - The 3D-coordinates of a point.

[page:HalfEdge crossEdge] - The edge used to jump to the current face.

[page:Face face] - The current face being tested.

[page:Array horizon] - The edges that form part of the horizon in CCW order.

Computes a chain of half edges in CCW order called the 'horizon'. For an edge to be part of the horizon it must join a face that can see 'eyePoint' and a face that cannot see 'eyePoint'.

[method:HalfEdge addAdjoiningFace]( [param:VertexNode eyeVertex], [param:HalfEdge horizonEdge] )

[page:VertexNode eyeVertex] - The vertex that is added to the hull.

[page:HalfEdge horizonEdge] - A single edge of the horizon.

Creates a face with the vertices 'eyeVertex.point', 'horizonEdge.tail' and 'horizonEdge.head' in CCW order. All the half edges are created in CCW order thus the face is always pointing outside the hull

[method:QuickHull addNewFaces]( [param:VertexNode eyeVertex], [param:HalfEdge horizonEdge] )

[page:VertexNode eyeVertex] - The vertex that is added to the hull.

[page:HalfEdge horizon] - An array of half-edges that form the horizon.

Adds 'horizon.length' faces to the hull, each face will be linked with the horizon opposite face and the face on the left/right.

[method:QuickHull addVertexToHull]( [param:VertexNode eyeVertex] )

[page:VertexNode eyeVertex] - The vertex that is added to the hull.

Adds a vertex to the hull with the following algorithm

[method:QuickHull cleanup]()

Cleans up internal properties after computing the convex hull.

[method:QuickHull compute]()

Starts the execution of the quick hull algorithm.

Source

[link:https://github.com/mrdoob/three.js/blob/master/examples/js/QuickHull.js examples/js/QuickHull.js]