Hi, is there an easy and fast way to get the x and y position from the opengl transform?
for example,
GL11.glLoadIdentity();
GL11.glRotatef(45,0,0,1);
GL11.glTranslatef(0,10,0);
//-> then somehow get x and y position of current transform
Thanks