Explorar el Código

removed unused argument

useCachedAreas doesn't seem to be used anywhere.
Andrei Kashcha hace 11 años
padre
commit
7b2312442b
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      examples/js/utils/GeometryUtils.js

+ 2 - 2
examples/js/utils/GeometryUtils.js

@@ -72,7 +72,7 @@ THREE.GeometryUtils = {
 	// Get random point in face (triangle)
 	// (uniform distribution)
 
-	randomPointInFace: function ( face, geometry, useCachedAreas ) {
+	randomPointInFace: function ( face, geometry ) {
 
 		var vA, vB, vC;
 
@@ -297,4 +297,4 @@ THREE.GeometryUtils = {
 
 	}
 
-};
+};