Definition at line 260 of file ViewSphere.h. Referenced by DisplayFunc(). 00261 { 00262 glTranslatef( view->x, view->y, view->z ); // Move to the viewers position 00263 00264 // Perform axis rotations according to the view's rotation values 00265 glRotatef( view->xRot, 1.0f, 0.0f, 0.0f ); 00266 glRotatef( view->yRot, 0.0f, 1.0f, 0.0f ); 00267 glRotatef( view->zRot, 0.0f, 0.0f, 1.0f ); 00268 }
|