Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 8, 2005, 11:59:09 AM (19 years ago)
Author:
patrick
Message:

orxonox/trunk: some more changes to display the data correctly

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/collision_detection/bv_tree.h

    r4550 r4553  
    88#define _BV_TREE_H
    99
     10
    1011#include "base_object.h"
     12#include "abstract_model.h"
    1113
    1214// FORWARD DEFINITION
     
    2123  virtual ~BVTree();
    2224
    23   virtual void spawnBVTree(int depth);
    24   virtual void flushTree();
     25  virtual void spawnBVTree(int depth, sVec3D *verticesList, const int length) = NULL;
     26  virtual void flushTree() = NULL;
    2527
    26   BoundingVolume* getBV(int index) const;
    27  
    28   virtual void collideWith(const BVTree &tree);
    2928
    30   virtual void drawBV(int currentDepth, const int depth) const;
    31   virtual void drawBVPolygon(int currentDepth, const int depth) const;
    32   virtual void drawBVBlended(int currentDepth, const int depth) const;
     29  virtual void drawBV(int currentDepth, const int depth) const = NULL;
     30  virtual void drawBVPolygon(int currentDepth, const int depth) const = NULL;
     31  virtual void drawBVBlended(int currentDepth, const int depth) const = NULL;
    3332
    3433 protected:
     
    3635
    3736 private:
    38   BoundingVolume* firstElement;
     37
    3938
    4039};
Note: See TracChangeset for help on using the changeset viewer.