source: GTP/branches/IllumWPdeliver2008dec/IlluminationWP/demos/Standalone/PathMap [DirectX]/Woctree.h @ 3255

Revision 3255, 494 bytes checked in by szirmay, 15 years ago (diff)
Line 
1// Woctree.h: interface for the Woctree class.
2//
3//////////////////////////////////////////////////////////////////////
4
5#pragma once
6
7class Wsimplex;
8class Woctreebranch;
9class Vector;
10
11class Woctree 
12{
13public:
14        virtual Woctree* add( Wsimplex* toadd,int maxObjsInBucket=8, double minBrick=10)=0;
15        virtual Wsimplex* search(Vector* proxy)=0;
16        virtual Wsimplex* searchNeighbour(Wsimplex* proxy)=0;
17        Woctree();
18        virtual ~Woctree();
19
20protected:
21        Woctreebranch* parent;
22};
23
Note: See TracBrowser for help on using the repository browser.