Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/world_entities/skysphere.h @ 5039

Last change on this file since 5039 was 5039, checked in by bensch, 19 years ago

orxonox/trunk: useless stuff :)

File size: 1.1 KB
RevLine 
[4597]1/*!
[5039]2 * @file skysphere.h
[4836]3  *  Definition of the Skysphere, that handles the Display of an atmosphere of orxonox.
[3416]4
5    A SkySphere is always centered at the current working Camera, and will only obey the cameras
6    movment but not its rotation.
7
[4836]8    @todo self-rotation
9    @todo handle reference to parent-object
[3416]10*/
11
[3412]12#ifndef _SKYSPHERE_H
13#define _SKYSPHERE_H
[3416]14
[3419]15/* INCLUDES */
[3502]16#include "world_entity.h"
[3411]17
[3419]18/* FORWARD DEFINITION */
19class Material;
20class Vector;
21
[3416]22//! A Class to handle a SkySphere
[3502]23class Skysphere : public WorldEntity
[3411]24{
[3420]25
[3416]26 public:
[3763]27  Skysphere(char* fileName = NULL);
[3531]28  virtual ~Skysphere();
29  void destroy();
[3419]30
[3420]31  void setRadius(float radius);
32  void setTexture(char* fileName);
33
[3502]34  virtual void draw();
35
[4597]36  private:
37    void initialize(char* fileName);
38
39 private:
40  GLUquadricObj*    sphereObj;           //!< A Placeholder for the SkySphere.
41  Material*         skyMaterial;         //!< A Material for the SkySphere.
42  float             sphereRadius;        //!< Radius of the SkySphere. This should match the frustum maximum range.
[3411]43};
44
[3484]45#endif  /* _SKYSPHERE_H */
[3411]46
47
[3484]48
Note: See TracBrowser for help on using the repository browser.