Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/lib/graphics/spatial_separation/spatial_separation.h @ 4809

Last change on this file since 4809 was 4809, checked in by patrick, 19 years ago

orxonox/trunk: debug module support implemented

File size: 559 bytes
Line 
1/*!
2    \file spatial_separation.h
3    \brief Definition of the generic spatial separation of model data
4
5 */
6
7#ifndef _SPATIAL_SEPARATION_H
8#define _SPATIAL_SEPARATION_H
9
10#include "base_object.h"
11
12
13class AbstractModel;
14class Quadtree;
15
16
17//! A class for spatial separation of vertices based arrays
18class SpatialSeparation : public BaseObject {
19
20  public:
21    SpatialSeparation();
22    virtual ~SpatialSeparation();
23
24    Quadtree* createQuadtree(AbstractModel* model);
25
26
27  private:
28    AbstractModel*             model;
29
30
31};
32
33#endif /* _SPATIAL_SEPARATION_H */
Note: See TracBrowser for help on using the repository browser.