Browse Source

Update docs/api/core/Matrix4.html

Update doc with latest method names.
Clément Boissière 12 years ago
parent
commit
fe3e5ff5b8
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 );