Changeset 6778 in orxonox.OLD for trunk/src/world_entities/camera.cc
- Timestamp:
- Jan 26, 2006, 5:49:58 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/world_entities/camera.cc
r6772 r6778 188 188 glLoadIdentity (); 189 189 190 // setting up the perspective191 190 gluPerspective(this->fovy, 192 191 this->aspectRatio, 193 192 this->nearClip, 194 193 this->farClip); 194 195 196 // setting up the perspective 195 197 // speed-up feature 196 198 Vector cameraPosition = this->getAbsCoor(); … … 205 207 up.x, up.y, up.z); 206 208 209 207 210 glMatrixMode (GL_MODELVIEW); 208 211 glLoadIdentity(); 212 213 214 209 215 } 210 216
Note: See TracChangeset
for help on using the changeset viewer.