Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6100 in orxonox.OLD for trunk/src/lib


Ignore:
Timestamp:
Dec 14, 2005, 1:46:12 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: copied the heightMap to the trunk, and adapted to partly new framework

Location:
trunk/src/lib/graphics/importer
Files:
1 edited
2 copied

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/graphics/importer/Makefile.am

    r6022 r6100  
    1212                           material.cc \
    1313                           texture.cc \
    14                            texture_sequence.cc
     14                           texture_sequence.cc \
     15                           height_map.cc
    1516
    1617
     
    2526                 texture.h \
    2627                 texture_sequence.h \
     28                 height_map.h \
    2729                 anorms.h \
    2830                 anormtab.h
  • trunk/src/lib/graphics/importer/height_map.cc

    r6099 r6100  
    2727#endif
    2828
    29 HeightMap::HeightMap() : Model()
     29HeightMap::HeightMap() : StaticModel()
    3030{
    3131       
    3232}
    3333
    34 HeightMap::HeightMap(const char* height_map_name = NULL) : Model()
     34HeightMap::HeightMap(const char* height_map_name = NULL) : StaticModel()
    3535{
    3636   this->setClassID(CL_HEIGHT_MAP, "HeightMap");
  • trunk/src/lib/graphics/importer/height_map.h

    r6099 r6100  
    1414
    1515
    16 #include "model.h"
     16#include "static_model.h"
    1717
    1818class SDL_Surface;
    1919class Vector;
    2020
    21 class HeightMap : public Model
     21class HeightMap : public StaticModel
    2222{
    2323public:
Note: See TracChangeset for help on using the changeset viewer.