| Rev | Line |   | 
|---|
| [3396] | 1 | /*! | 
|---|
| [3454] | 2 |   \file objModel.h | 
|---|
| [3396] | 3 |   \brief Contains the OBJ-model Class, that reads in a Model from a .obj-file | 
|---|
 | 4 | */ | 
|---|
 | 5 |  | 
|---|
 | 6 | #ifndef _OBJMODEL_H | 
|---|
 | 7 | #define _OBJMODEL_H | 
|---|
 | 8 |  | 
|---|
| [6022] | 9 | #include "static_model.h" | 
|---|
| [3396] | 10 |  | 
|---|
 | 11 | //! A Class, that handles the parsing of an obj-file, and inclusion as a Model. | 
|---|
| [6022] | 12 | class OBJModel : public StaticModel | 
|---|
| [3396] | 13 | { | 
|---|
 | 14 |  public: | 
|---|
| [7221] | 15 |    OBJModel(const std::string& fileName, float scaling = 1.0); | 
|---|
| [3396] | 16 |   virtual ~OBJModel(); | 
|---|
 | 17 |  | 
|---|
 | 18 |  private: | 
|---|
 | 19 |   ///// readin ///// | 
|---|
| [7221] | 20 |    bool importFile (const std::string& fileName); | 
|---|
 | 21 |    bool readFromObjFile (const std::string& fileName); | 
|---|
 | 22 |    bool readMtlLib (const std::string& matFile); | 
|---|
| [4468] | 23 |  | 
|---|
 | 24 |  private: | 
|---|
| [7221] | 25 |    std::string       objPath;     //!< The Path where the obj and mtl-file are located. | 
|---|
| [3396] | 26 | }; | 
|---|
 | 27 |  | 
|---|
 | 28 | #endif /* _OBJ_MODEL_H */ | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.