Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 12, 2005, 1:26:46 PM (20 years ago)
Author:
bensch
Message:

orxonox/branches/trackManager: merged trunk back to trackManager (again)
merged with command:
svn merge ../trunk/ trackManager/ -r 3498:HEAD
no conflicts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/trackManager/src/world_entities/skysphere.h

    r3498 r3519  
    1515/* INCLUDES */
    1616#include "p_node.h"
     17#include "world_entity.h"
    1718
    1819/* FORWARD DEFINITION */
     
    2122
    2223//! A Class to handle a SkySphere
    23 class Skysphere : public PNode
     24class Skysphere : public WorldEntity
    2425{
    2526
     
    3233  void setTexture(char* fileName);
    3334
    34   void updatePosition(Vector sphereCenter);
    35   void draw();
     35  virtual void draw();
    3636
    3737 private:
    3838  GLUquadricObj *sphereObj; //!< A Placeholder for the SkySphere.
    3939  Material *skyMaterial;    //!< A Material for the SkySphere.
    40   Vector sphereCenter;      //!< Center of the SkySphere.
    4140  float sphereRadius;       //!< Radius of the SkySphere. This should match the frustum maximum range.
    42 
    43 
     41   
    4442  void initialize(char* fileName); 
    4543};
Note: See TracChangeset for help on using the changeset viewer.