Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 9, 2009, 7:51:00 PM (16 years ago)
Author:
rgrieder
Message:

Cleaned out DynamicLines and DynamicRenderable classes and put them in the Ogre namespace since that's where they came from (OGRE wiki).

Location:
code/branches/pch/src/orxonox/objects
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/pch/src/orxonox/objects/RadarViewable.cc

    r3110 r3130  
    2929#include "RadarViewable.h"
    3030
     31#include <OgreSceneManager.h>
    3132#include "util/Debug.h"
    3233#include "util/Exception.h"
     
    101102
    102103            this->line_->end(); */
    103             this->line_ = new DynamicLines(Ogre::RenderOperation::OT_LINE_LIST);
     104            this->line_ = new Ogre::DynamicLines(Ogre::RenderOperation::OT_LINE_LIST);
    104105            this->line_->addPoint( Vector3(0,0,0) );
    105106            this->line_->addPoint( Vector3(0,0,0) );
  • code/branches/pch/src/orxonox/objects/RadarViewable.h

    r3101 r3130  
    105105        Ogre::SceneNode * MapNode_;
    106106        Ogre::Entity * MapEntity_;
    107         DynamicLines* line_;
     107        Ogre::DynamicLines* line_;
    108108        Ogre::SceneNode * LineNode_;
    109109        void addMapEntity();
Note: See TracChangeset for help on using the changeset viewer.