foijord 8 years ago
parent
commit
a70e633400
3 changed files with 3 additions and 3 deletions
  1. 1 1
      build/three.js
  2. 1 1
      build/three.module.js
  3. 1 1
      src/math/Matrix4.js

+ 1 - 1
build/three.js

@@ -3402,7 +3402,7 @@
 
 
 		copy: function ( m ) {
 		copy: function ( m ) {
 
 
-			this.elements = m.emements.slice();
+			this.elements = m.elements.slice();
 
 
 			return this;
 			return this;
 
 

+ 1 - 1
build/three.module.js

@@ -3396,7 +3396,7 @@ Matrix4.prototype = {
 
 
 	copy: function ( m ) {
 	copy: function ( m ) {
 
 
-		this.elements = m.emements.slice();
+		this.elements = m.elements.slice();
 
 
 		return this;
 		return this;
 
 

+ 1 - 1
src/math/Matrix4.js

@@ -75,7 +75,7 @@ Matrix4.prototype = {
 
 
 	copy: function ( m ) {
 	copy: function ( m ) {
 
 
-		this.elements = m.emements.slice();
+		this.elements = m.elements.slice();
 
 
 		return this;
 		return this;