Browse Source

removed unused argument

useCachedAreas doesn't seem to be used anywhere.
Andrei Kashcha 10 năm trước cách đây
mục cha
commit
7b2312442b
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  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 = {
 
 	}
 
-};
+};