source: GTP/trunk/App/Demos/Illum/pathmap/Wbucket.h @ 2197

Revision 2197, 624 bytes checked in by szirmay, 17 years ago (diff)
Line 
1// Wbucket.h: interface for the Wbucket class.
2//
3//////////////////////////////////////////////////////////////////////
4
5#pragma once
6#include "Wsimplex.h"
7#include "Woctree.h"
8
9class Wbucket : public Woctree 
10{
11public:
12        int getCount();
13        void eliminate(Wsimplex* dieing);
14        Wsimplex* search(Vector *proxy);
15        Wsimplex* searchNeighbour(Wsimplex* proxy);
16        Wbucket(  Wsimplex* founder, int orientation, Woctreebranch* parent);
17        Woctree* add( Wsimplex* toadd,int maxObjsInBucket=8, double minBrick=10);
18        Wbucket();
19        virtual ~Wbucket();
20
21        ::std::vector<Wsimplex*> simplexArray;
22private:
23        int whereami;
24};
Note: See TracBrowser for help on using the repository browser.