Browse Source

QuickHull3: Clean up

Mugen87 8 years ago
parent
commit
7a9c076f6d
2 changed files with 1 additions and 3 deletions
  1. 0 2
      src/math/convexhull/QuickHull3.js
  2. 1 1
      src/math/convexhull/VertexList.js

+ 0 - 2
src/math/convexhull/QuickHull3.js

@@ -12,8 +12,6 @@ import { MergeNonConvexLargerFace, MergeNonConvex } from '../../constants';
  *
  */
 
-var c = 0;
-
 function QuickHull3() {
 
 	this.tolerance = - 1;

+ 1 - 1
src/math/convexhull/VertexList.js

@@ -78,7 +78,7 @@ Object.assign( VertexList.prototype, {
 
   },
 
-  // Appends a 'node' to the end of this doubly linked list
+  // Appends a vertex to the end of this doubly linked list
 
   append: function ( vertex ) {