Changeset 3484 in orxonox.OLD for orxonox/trunk/src/world_entities/skysphere.h
- Timestamp:
- Mar 10, 2005, 11:29:32 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/world_entities/skysphere.h
r3475 r3484 21 21 22 22 //! A Class to handle a SkySphere 23 class Skysphere : public PNode23 class Skysphere : public PNode 24 24 { 25 private: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 25 31 26 public: … … 40 35 void draw(); 41 36 42 private: 37 private: 38 GLUquadricObj *sphereObj; //!< A Placeholder for the SkySphere. 39 Material *skyMaterial; //!< A Material for the SkySphere. 40 Vector sphereCenter; //!< Center of the SkySphere. 41 float sphereRadius; //!< Radius of the SkySphere. This should match the frustum maximum range. 42 43 43 44 void initialize(char* fileName); 44 45 }; 45 46 46 #endif 47 #endif /* _SKYSPHERE_H */ 47 48 48 49 50
Note: See TracChangeset
for help on using the changeset viewer.