[PyOpenGL-Users] get Translation inside matrix stack
Brought to you by:
mcfletch
From: Prashant S. <ani...@ya...> - 2008-07-22 10:16:03
|
glPushMatrix() glTranslate(5,0,0) glTranslate(10,0,0) glTranslate(5,0,0) # How do I get here total increment of x axis(which is 5+10+5=20) before I Pop up. glPopMatrix() |