Changeset 3420 in orxonox.OLD for orxonox/trunk/src/skysphere.h
- Timestamp:
- Feb 22, 2005, 8:14:18 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/skysphere.h
r3419 r3420 24 24 { 25 25 private: 26 GLUquadricObj *sphereObj; 27 Vector sphereCenter; //!< Center of the Skysphere 28 Material *sky; //!< A Material for the Sky 29 26 GLUquadricObj *sphereObj; //!< A Placeholder for the SkySphere. 27 Material *skyMaterial; //!< A Material for the SkySphere. 28 Vector sphereCenter; //!< Center of the SkySphere. 29 float sphereRadius; //!< Radius of the SkySphere. This should match the frustum maximum range. 30 30 31 public: 31 32 Skysphere(); 32 33 Skysphere(char* fileName); 33 34 ~Skysphere(); 35 36 void setRadius(float radius); 37 void setTexture(char* fileName); 34 38 35 39 void updatePosition(Vector sphereCenter);
Note: See TracChangeset
for help on using the changeset viewer.