1
0
Эх сурвалжийг харах

Merge remote-tracking branch 'robertshield/master' into dev

Mr.doob 14 жил өмнө
parent
commit
4e1d803a5e

+ 5 - 1
src/core/Vector3.js

@@ -132,7 +132,11 @@ THREE.Vector3.prototype = {
 
 
 	divideSelf: function ( v ) {
 	divideSelf: function ( v ) {
 
 
-		return this.divide( this, v );
+		this.x /= v.x;
+		this.y /= v.y;
+		this.z /= v.z;
+
+		return this;
 
 
 	},
 	},
 
 

粤ICP备19079148号