libcvd-members
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Libcvd-members] libcvd/cvd gl_helpers.h


From: Ethan Eade
Subject: [Libcvd-members] libcvd/cvd gl_helpers.h
Date: Tue, 16 May 2006 13:30:20 +0000

CVSROOT:        /cvsroot/libcvd
Module name:    libcvd
Branch:         
Changes by:     Ethan Eade <address@hidden>     06/05/16 13:30:20

Modified files:
        cvd            : gl_helpers.h 

Log message:
        Fixed glMultMatrix to do rotation and translation in the correct order.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/libcvd/libcvd/cvd/gl_helpers.h.diff?tr1=1.23&tr2=1.24&r1=text&r2=text

Patches:
Index: libcvd/cvd/gl_helpers.h
diff -u libcvd/cvd/gl_helpers.h:1.23 libcvd/cvd/gl_helpers.h:1.24
--- libcvd/cvd/gl_helpers.h:1.23        Tue May  9 02:32:20 2006
+++ libcvd/cvd/gl_helpers.h     Tue May 16 13:30:20 2006
@@ -235,8 +235,8 @@
        /// @ingroup gGL
        inline void glMultMatrix( const CVD::SE3 & se3 )
        {
-               glMultMatrix( se3.get_rotation());
                glTranslate( se3.get_translation());
+               glMultMatrix( se3.get_rotation());
        }
 
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]