Browse Source

Updated builds.

Mr.doob 4 years ago
parent
commit
7cc1b69b37
3 changed files with 19 additions and 0 deletions
  1. 8 0
      build/three.js
  2. 0 0
      build/three.min.js
  3. 11 0
      build/three.module.js

+ 8 - 0
build/three.js

@@ -1637,6 +1637,14 @@
 			return this;
 		};
 
+		_proto.multiply = function multiply(v) {
+			this.x *= v.x;
+			this.y *= v.y;
+			this.z *= v.z;
+			this.w *= v.w;
+			return this;
+		};
+
 		_proto.multiplyScalar = function multiplyScalar(scalar) {
 			this.x *= scalar;
 			this.y *= scalar;

File diff suppressed because it is too large
+ 0 - 0
build/three.min.js


+ 11 - 0
build/three.module.js

@@ -1958,6 +1958,17 @@ class Vector4 {
 
 	}
 
+	multiply( v ) {
+
+		this.x *= v.x;
+		this.y *= v.y;
+		this.z *= v.z;
+		this.w *= v.w;
+
+		return this;
+
+	}
+
 	multiplyScalar( scalar ) {
 
 		this.x *= scalar;

Some files were not shown because too many files changed in this diff