Browse Source

Merge remote-tracking branch 'remotes/mrdoob/dev' into dev

alteredq 13 years ago
parent
commit
d6867a9037
2 changed files with 6 additions and 0 deletions
  1. 2 0
      src/core/Matrix3.js
  2. 4 0
      src/core/Matrix4.js

+ 2 - 0
src/core/Matrix3.js

@@ -12,6 +12,7 @@ THREE.Matrix3.prototype = {
 
 	constructor: THREE.Matrix3,
 
+	/*
 	transpose: function () {
 
 		var tmp, m = this.m;
@@ -23,6 +24,7 @@ THREE.Matrix3.prototype = {
 		return this;
 
 	},
+	*/
 
 	transposeIntoArray: function ( r ) {
 

+ 4 - 0
src/core/Matrix4.js

@@ -265,6 +265,7 @@ THREE.Matrix4.prototype = {
 
 	},
 
+	/*
 	transpose: function () {
 
 		var tmp;
@@ -280,6 +281,7 @@ THREE.Matrix4.prototype = {
 		return this;
 
 	},
+	*/
 
 	clone: function () {
 
@@ -294,6 +296,7 @@ THREE.Matrix4.prototype = {
 
 	},
 
+	/*
 	flatten: function () {
 
 		this.flat[ 0 ] = this.n11; this.flat[ 1 ] = this.n21; this.flat[ 2 ] = this.n31; this.flat[ 3 ] = this.n41;
@@ -304,6 +307,7 @@ THREE.Matrix4.prototype = {
 		return this.flat;
 
 	},
+	*/
 
 	flattenToArray: function ( flat ) {