Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2767 in orxonox.OLD for orxonox/branches/importer/importer/object.h


Ignore:
Timestamp:
Nov 9, 2004, 5:10:23 PM (20 years ago)
Author:
bensch
Message:

orxonox/branches/importer: differences between GL_TRINGLES and GL_QUADS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/importer/importer/object.h

    r2765 r2767  
    77 public:
    88  Object ();
     9  Object (char* fileName);
    910  ~Object ();
    1011 
    11   void draw();
    12  
     12  bool importFile (char* fileName);
     13  bool initialize (void);
     14  bool finalize(void);
     15  void draw (void);
     16
    1317  bool readFromObjFile (char* fileName);
    1418
     
    2024  Array* colors;
    2125  Array* faces;
     26  char* objFile;
     27  int faceMode;
     28  bool readVertices;
    2229
    2330  ifstream* OBJ_FILE;
    2431  ifstream* MTL_FILE;
    2532 
     33  bool readVertex (char* vertexString);
     34  bool readFace (char* faceString);
     35  bool readVT (char* vtString);
    2636
    2737};
Note: See TracChangeset for help on using the changeset viewer.