Changeset 4809 in orxonox.OLD for orxonox/trunk/src/lib/graphics
- Timestamp:
- Jul 7, 2005, 1:23:53 PM (19 years ago)
- Location:
- orxonox/trunk/src/lib/graphics
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/graphics/importer/abstract_model.h
r4806 r4809 29 29 using namespace std; 30 30 31 class Quadtree; 31 32 32 33 … … 146 147 protected: 147 148 modelInfo* pModelInfo; //!< Reference to the modelInfo defined in abstract_model.h 149 Quadtree* quadtreel; //!< Reference to the quadtree of the object, NULL if not defined 148 150 }; 149 151 -
orxonox/trunk/src/lib/graphics/spatial_separation/spatial_separation.cc
r4808 r4809 26 26 \todo this constructor is not jet implemented - do it 27 27 */ 28 SpatialSeparation::SpatialSeparation ( AbstractModel* model)28 SpatialSeparation::SpatialSeparation () 29 29 { 30 30 this->setClassID(CL_SPATIAL_SEPARATION, "SpatialSeparation"); -
orxonox/trunk/src/lib/graphics/spatial_separation/spatial_separation.h
r4808 r4809 3 3 \brief Definition of the generic spatial separation of model data 4 4 5 */5 */ 6 6 7 7 #ifndef _SPATIAL_SEPARATION_H … … 12 12 13 13 class AbstractModel; 14 class Quadtree; 14 15 15 16 … … 17 18 class SpatialSeparation : public BaseObject { 18 19 19 public: 20 SpatialSeparation(AbstractModel* model); 21 virtual ~SpatialSeparation(); 20 public: 21 SpatialSeparation(); 22 virtual ~SpatialSeparation(); 23 24 Quadtree* createQuadtree(AbstractModel* model); 22 25 23 26 24 25 26 private: 27 AbstractModel* model; 27 private: 28 AbstractModel* model; 28 29 29 30
Note: See TracChangeset
for help on using the changeset viewer.