Changeset 4805 in orxonox.OLD
- Timestamp:
- Jul 7, 2005, 11:42:37 AM (19 years ago)
- Location:
- orxonox/trunk/src/lib/graphics/spatial_separation
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/graphics/spatial_separation/quadtree.h
r4790 r4805 9 9 10 10 11 #include " spatial_separation.h"11 #include "base_object.h" 12 12 13 13 //! A class for quadtree separation of the world 14 class Quadtree : public SpatialSeparation{14 class Quadtree : public BaseObject { 15 15 16 16 public: -
orxonox/trunk/src/lib/graphics/spatial_separation/spatial_separation.cc
r4791 r4805 17 17 18 18 #include "spatial_separation.h" 19 #include "abstract_model.h" 19 20 20 21 using namespace std; … … 25 26 \todo this constructor is not jet implemented - do it 26 27 */ 27 SpatialSeparation::SpatialSeparation ( )28 SpatialSeparation::SpatialSeparation (AbstractModel* model) 28 29 { 29 30 this->setClassID(CL_SPATIAL_SEPARATION, "SpatialSeparation"); -
orxonox/trunk/src/lib/graphics/spatial_separation/spatial_separation.h
r4790 r4805 12 12 // FORWARD DEFINITION 13 13 14 class AbstractModel; 14 15 15 16 16 //! A class for ...17 //! A class for spatial separation of vertices based arrays 17 18 class SpatialSeparation : public BaseObject { 18 19 19 20 public: 20 SpatialSeparation( );21 SpatialSeparation(AbstractModel* model); 21 22 virtual ~SpatialSeparation(); 22 23 23 24 25 26 24 27 private: 28 AbstractModel* model; 29 25 30 26 31 };
Note: See TracChangeset
for help on using the changeset viewer.