]> git.treefish.org Git - phys/latlib.git/commitdiff
...
authorAlexander B. Schmidt <alex@treefish.org>
Fri, 22 Feb 2013 21:26:28 +0000 (22:26 +0100)
committerAlexander B. Schmidt <alex@treefish.org>
Fri, 22 Feb 2013 21:26:28 +0000 (22:26 +0100)
culooks_cube.cpp

index 890ff166697c5168e56355a71ba7494f00187a03..412b1d9c06f18df11b624716f12b7d49d63b6daa 100644 (file)
@@ -59,8 +59,8 @@ void culooks::cube::draw()
   glDisable(GL_BLEND);
   glPushMatrix();
   glScalef(zoom*1.01, zoom*1.01, zoom*1.01);
-  glRotatef(az, 0, 1, 0);
   glRotatef(alt, 1, 0, 0);
+  glRotatef(az, 0, 1, 0);
   glColor4f(wireColor[0], wireColor[1], wireColor[2], wireColor[3]);
   glLineWidth(framewidth);
   glutWireCube(2);
@@ -71,8 +71,8 @@ void culooks::cube::draw()
   glEnable(GL_BLEND);
   glPushMatrix();
   glScalef(zoom, zoom, zoom);
-  glRotatef(az, 0, 1, 0);
   glRotatef(alt, 1, 0, 0);
+  glRotatef(az, 0, 1, 0);
   drawAll();
   glPopMatrix();
 
@@ -162,9 +162,9 @@ culooks::cube::cube(int _l)
 
   link = linkbuf[0];
   plaq = plaqbuf[0];
-  az = 30;
-  alt = -20;
-  zoom = 0.6;
+  az = 45;
+  alt = -30;
+  zoom = 0.57;
   id = allid;
   allid++;