Mr.doob 12 éve
szülő
commit
e5b4c9be65
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      src/math/Vector3.js

+ 1 - 1
src/math/Vector3.js

@@ -568,7 +568,7 @@ THREE.extend( THREE.Vector3.prototype, {
 
 		// clamp, to handle numerical problems
 
-		return Math.acos( THREE.Math.clamp ( theta, -1, 1 ) );
+		return Math.acos( THREE.Math.clamp( theta, -1, 1 ) );
 
 	},