Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/examples/quickhull/QuickHull.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ <h3>[method:QuickHull makeEmpty]()</h3>
<p>Makes this convex hull empty.</p>

<h3>[method:QuickHull addVertexToFace]( [param:VertexNode vertex], [param:Face face] )</h3>
[page:VertexNodeNode vertex] - The vetex to add.<br /><br />
[page:VertexNodeNode vertex] - The vertex to add.<br /><br />
[page:Face face] - The target face.<br /><br />

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

<h3>[method:QuickHull removeVertexFromFace]( [param:VertexNode vertex], [param:Face face] )</h3>
[page:VertexNode vertex] - The vetex to remove.<br /><br />
[page:VertexNode vertex] - The vertex to remove.<br /><br />
[page:Face face] - The target face.<br /><br />

<p>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.</p>
Expand Down