Changeset 6022 in orxonox.OLD for trunk/src/lib/graphics/importer
- Timestamp:
- Dec 10, 2005, 8:33:08 PM (19 years ago)
- Location:
- trunk/src/lib/graphics/importer
- Files:
-
- 2 deleted
- 7 edited
- 4 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/graphics/importer/Makefile.am
r6010 r6022 4 4 noinst_LIBRARIES = libORXimporter.a 5 5 6 libORXimporter_a_SOURCES = abstract_model.cc \6 libORXimporter_a_SOURCES = model.cc \ 7 7 vertex_array_model.cc \ 8 model.cc \8 static_model.cc \ 9 9 objModel.cc \ 10 10 primitive_model.cc \ … … 16 16 17 17 18 noinst_HEADERS = abstract_model.h \18 noinst_HEADERS = model.h \ 19 19 vertex_array_model.h \ 20 model.h \20 static_model.h \ 21 21 objModel.h \ 22 22 primitive_model.h \ -
trunk/src/lib/graphics/importer/md2Model.cc
r5284 r6022 160 160 161 161 /** 162 \brief draws the model: interface for all other classes out in the world 163 */ 162 * @brief draws the model: interface for all other classes out in the world 163 * @todo make it const and virtual 164 * FIXME 165 */ 164 166 void MD2Model::draw() 165 167 { -
trunk/src/lib/graphics/importer/md2Model.h
r5304 r6022 19 19 #define _MD2MODEL_H 20 20 21 #include " abstract_model.h"21 #include "model.h" 22 22 #include "base_object.h" 23 23 #include "stdincl.h" … … 137 137 138 138 //! This is a MD2 Model class 139 class MD2Model : public AbstractModel {139 class MD2Model : public Model { 140 140 141 141 public: -
trunk/src/lib/graphics/importer/objModel.cc
r5319 r6022 32 32 * @param scaling The factor that the model will be scaled with. 33 33 */ 34 OBJModel::OBJModel(const char* fileName, float scaling) : Model(fileName)34 OBJModel::OBJModel(const char* fileName, float scaling) : StaticModel(fileName) 35 35 { 36 36 this->objPath = "./"; -
trunk/src/lib/graphics/importer/objModel.h
r4468 r6022 7 7 #define _OBJMODEL_H 8 8 9 #include " model.h"9 #include "static_model.h" 10 10 11 11 //! A Class, that handles the parsing of an obj-file, and inclusion as a Model. 12 class OBJModel : public Model12 class OBJModel : public StaticModel 13 13 { 14 14 public: -
trunk/src/lib/graphics/importer/primitive_model.h
r5039 r6022 8 8 #define _PRIMITIVE_MODEL_H 9 9 10 #include " model.h"10 #include "static_model.h" 11 11 12 12 //! Specification of different primitives the Model knows … … 18 18 19 19 //! A Class to create some default Models 20 class PrimitiveModel : public Model {20 class PrimitiveModel : public StaticModel { 21 21 22 22 public: -
trunk/src/lib/graphics/importer/vertex_array_model.h
r6012 r6022 7 7 #define _VERTEX_ARRAY_MODEL_H 8 8 9 #include " abstract_model.h"9 #include "model.h" 10 10 11 11 #include "glincl.h" … … 22 22 ///////////// 23 23 //! Class that handles 3D-Models. it can also read them in and display them. 24 class VertexArrayModel : public AbstractModel24 class VertexArrayModel : public Model 25 25 { 26 26 public:
Note: See TracChangeset
for help on using the changeset viewer.