From d8f6d06edfe825e1abc3a65cc8a219640c4e521c Mon Sep 17 00:00:00 2001 From: astrodud Date: Mon, 17 Jan 2011 22:09:03 -0800 Subject: [PATCH] oops - fixed but in setRotX --- src/core/Matrix4.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Matrix4.js b/src/core/Matrix4.js index 3bc8bcd0..0716b2e9 100644 --- a/src/core/Matrix4.js +++ b/src/core/Matrix4.js @@ -306,7 +306,7 @@ THREE.Matrix4.prototype = { setRotX: function( theta ) { var c = Math.cos( theta ), s = Math.sin( theta ); - this.set( 1, 0, 0, 0, 0, c, -s, 0, 0, c, s, 0, 0, 0, 0, 1 ); + this.set( 1, 0, 0, 0, 0, c, -s, 0, 0, s, c, 0, 0, 0, 0, 1 ); return this; },