Browse Source

Merge remote-tracking branch 'remotes/mrdoob/dev' into no-max-lights

alteredq 12 years ago
parent
commit
b5051840ed
1 changed files with 3 additions and 3 deletions
  1. 3 3
      docs/api/core/Matrix4.html

+ 3 - 3
docs/api/core/Matrix4.html

@@ -26,9 +26,9 @@
 		var beta = Math.PI;
 		var gamma = Math.PI/2;
 
-		m1.setRotationX( alpha );
-		m2.setRotationY( beta );
-		m3.setRotationZ( gamma );
+		m1.makeRotationX( alpha );
+		m2.makeRotationY( beta );
+		m3.makeRotationZ( gamma );
 
 		m.multiply( m1, m2 );
 		m.multiplySelf( m3 );