From fe3e5ff5b82d1be468286a10a297509240e11457 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Boissi=C3=A8re?= Date: Thu, 1 Nov 2012 01:39:09 -0500 Subject: [PATCH] Update docs/api/core/Matrix4.html Update doc with latest method names. --- docs/api/core/Matrix4.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/api/core/Matrix4.html b/docs/api/core/Matrix4.html index cc49de74cd..cb2aa1bd4c 100644 --- a/docs/api/core/Matrix4.html +++ b/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 ); -- GitLab