Changeset 4791 in orxonox.OLD
- Timestamp:
- Jul 6, 2005, 12:19:35 PM (19 years ago)
- Location:
- orxonox/trunk/src/lib/graphics
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/graphics/importer/array.h
r4746 r4791 40 40 /** \returns The Count of entries in the Array*/ 41 41 inline unsigned int getCount()const { return this->entryCount; }; 42 inline int getIndex(T* entry) const; 42 43 void debug() const ; 43 44 … … 153 154 } 154 155 156 157 158 template<class T> 159 int Array<T>::getIndex(T* entry) const 160 { 161 162 } 163 164 155 165 /** 156 166 \brief Simple debug info about the Array … … 161 171 PRINT(0)("entryCount=%i, address=%p\n", this->entryCount, this->array); 162 172 } 173 163 174 #endif -
orxonox/trunk/src/lib/graphics/importer/model.cc
r4746 r4791 202 202 // this creates the display List. 203 203 this->importToDisplayList(); 204 this->buildTriangleList(); 204 205 205 206 // deletes everything we allocated. … … 809 810 } 810 811 812 813 814 /** 815 \brief builds an array of triangles, that can later on be used for obb separation and octree separation 816 */ 817 bool Model::buildTriangleList() 818 { 819 820 } 811 821 812 822 -
orxonox/trunk/src/lib/graphics/importer/model.h
r4746 r4791 157 157 158 158 bool importToDisplayList(); 159 bool buildTriangleList(); 159 160 bool addGLElement(ModelFaceElement* elem); 160 161 -
orxonox/trunk/src/lib/graphics/spatial_separation/spatial_separation.cc
r4790 r4791 10 10 11 11 ### File Specific: 12 main-programmer: ...12 main-programmer: Patrick Boenzli 13 13 co-programmer: ... 14 14 */
Note: See TracChangeset
for help on using the changeset viewer.