Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 7, 2005, 11:42:37 AM (20 years ago)
Author:
patrick
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/graphics/spatial_separation/spatial_separation.h

    r4790 r4805  
    1212// FORWARD DEFINITION
    1313
     14class AbstractModel;
    1415
    1516
    16 //! A class for ...
     17//! A class for spatial separation of vertices based arrays
    1718class SpatialSeparation : public BaseObject {
    1819
    1920 public:
    20   SpatialSeparation();
     21  SpatialSeparation(AbstractModel* model);
    2122  virtual ~SpatialSeparation();
    2223
    2324
     25
     26
    2427 private:
     28   AbstractModel*             model;
     29
    2530
    2631};
Note: See TracChangeset for help on using the changeset viewer.