Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: some modifications in spatial separation, made Model now an AbstractModel this simplifies many things

File size: 526 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// FORWARD DEFINITION
13
14class AbstractModel;
15
16
17//! A class for spatial separation of vertices based arrays
18class SpatialSeparation : public BaseObject {
19
20 public:
21  SpatialSeparation(AbstractModel* model);
22  virtual ~SpatialSeparation();
23
24
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.