Changeset 4023 in orxonox.OLD
- Timestamp:
- May 3, 2005, 1:48:38 AM (20 years ago)
- Location:
- orxonox/trunk/src/lib/graphics/importer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/graphics/importer/model.cc
r4022 r4023 31 31 /// SUB-Elements /// 32 32 //////////////////// 33 /** 34 \brief creates a new ModelFaceElement 35 */ 33 36 ModelFaceElement::ModelFaceElement() 34 { 35 } 36 37 {} 38 39 /** 40 \brief destroys a ModelFaceElement 41 */ 37 42 ModelFaceElement::~ModelFaceElement() 38 43 { … … 41 46 } 42 47 48 /** 49 \brief creates a new ModelFace 50 */ 43 51 ModelFace::ModelFace() 44 52 { … … 53 61 } 54 62 63 /** 64 \brief deletes a ModelFace 65 */ 55 66 ModelFace::~ModelFace() 56 67 { … … 69 80 } 70 81 82 /** 83 \brief Creates a new ModelGroup 84 */ 71 85 ModelGroup::ModelGroup() 72 86 { … … 81 95 } 82 96 97 /** 98 \brief deletes a ModelGroup 99 */ 83 100 ModelGroup::~ModelGroup() 84 101 { … … 93 110 } 94 111 112 /** 113 \brief cleans up a ModelGroup 114 115 actually does the same as the delete Operator, but does not delete the predecessing group 116 */ 95 117 void ModelGroup::cleanup(void) 96 118 { 119 PRINTF(5)("Cleaning up group\n"); 97 120 if (this->firstFace) 98 121 delete this->firstFace; … … 344 367 /** 345 368 \brief adds a new Material to the Material List 346 \param material the name of the Material to add369 \param materialName the name of the Material to add 347 370 \returns the added material 348 371 */ -
orxonox/trunk/src/lib/graphics/importer/model.h
r4022 r4023 96 96 97 97 char* name; //!< This is the name of the Model. 98 MODEL_TYPE type; 98 MODEL_TYPE type; //!< A type for the Model 99 99 bool finalized; //!< Sets the Object to be finalized. 100 100 … … 133 133 134 134 void setName(const char* name); 135 /** \returns the Name of the Model */ 135 136 inline const char* getName() {return this->name;} 136 137
Note: See TracChangeset
for help on using the changeset viewer.