Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 26, 2006, 1:09:35 PM (18 years ago)
Author:
bensch
Message:

new static_model_data added

File:
1 copied

Legend:

Unmodified
Added
Removed
  • branches/new_class_id/src/lib/graphics/importer/static_model_data.h

    r9827 r9829  
    9090 * All the objects are rendered with glLists
    9191 */
    92 class StaticModel : public Model
     92class StaticModelData : public BaseObject
    9393{
    94   ObjectListDeclaration(StaticModel);
     94  ObjectListDeclaration(StaticModelData);
    9595  public:
    96   StaticModel(const std::string& modelName = "");
    97   virtual ~StaticModel();
     96  StaticModelData(const std::string& modelName = "");
     97  virtual ~StaticModelData();
    9898
    9999  virtual void draw() const;
     
    153153  std::vector<GLfloat>       vTexture;        //!< The Array that handles the VertexTextureCoordinates.
    154154
     155  std::vector<sTriangleExt>  triangles;       //!< The Triangles if built.
     156
    155157  ModelGroup*                firstGroup;      //!< The first of all groups.
    156158  ModelGroup*                currentGroup;    //!< The currentGroup. this is the one we will work with.
Note: See TracChangeset for help on using the changeset viewer.