From 3595f18c35676ed5e420174acd8f2f8dd75ca3be Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Mon, 17 Mar 2014 09:22:51 +0100 Subject: Quaternion: Add rotateByEuler(..); AABBox: Add translate(..); Minor edits .. --- src/jogl/classes/javax/media/opengl/fixedfunc/GLMatrixFunc.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/jogl/classes/javax/media/opengl/fixedfunc/GLMatrixFunc.java') diff --git a/src/jogl/classes/javax/media/opengl/fixedfunc/GLMatrixFunc.java b/src/jogl/classes/javax/media/opengl/fixedfunc/GLMatrixFunc.java index b4d788329..87a23d12a 100644 --- a/src/jogl/classes/javax/media/opengl/fixedfunc/GLMatrixFunc.java +++ b/src/jogl/classes/javax/media/opengl/fixedfunc/GLMatrixFunc.java @@ -113,13 +113,13 @@ public interface GLMatrixFunc { public void glLoadMatrixf(float[] m, int m_offset); /** - * Multiply the current matrix + * Multiply the current matrix: [c] = [c] x [m] * @param m the FloatBuffer's position remains unchanged, * which is the same behavior than the native JOGL GL impl */ public void glMultMatrixf(java.nio.FloatBuffer m) ; /** - * Multiply the current matrix + * Multiply the current matrix: [c] = [c] x [m] */ public void glMultMatrixf(float[] m, int m_offset); -- cgit v1.2.3