Line | |
---|
1 | // Wbucket.h: interface for the Wbucket class.
|
---|
2 | //
|
---|
3 | //////////////////////////////////////////////////////////////////////
|
---|
4 |
|
---|
5 | #pragma once
|
---|
6 | #include "Wsimplex.h"
|
---|
7 | #include "Woctree.h"
|
---|
8 |
|
---|
9 | class Wbucket : public Woctree
|
---|
10 | {
|
---|
11 | public:
|
---|
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;
|
---|
22 | private:
|
---|
23 | int whereami;
|
---|
24 | };
|
---|
Note: See
TracBrowser
for help on using the repository browser.