mirror of https://github.com/PrimeDecomp/prime.git
23 lines
443 B
C++
23 lines
443 B
C++
|
#ifndef _CPVSVISOCTREE
|
||
|
#define _CPVSVISOCTREE
|
||
|
|
||
|
#include "Kyoto/Math/CAABox.hpp"
|
||
|
#include "Kyoto/Math/CVector3f.hpp"
|
||
|
#include "rstl/auto_ptr.hpp"
|
||
|
|
||
|
class CPVSVisOctree {
|
||
|
public:
|
||
|
int IterateSearch(uchar a, const CVector3f& pos) const;
|
||
|
uint GetNumChildren(uchar a) const;
|
||
|
|
||
|
private:
|
||
|
CAABox mBounds;
|
||
|
uint mNumObjects;
|
||
|
uint mNumLights;
|
||
|
rstl::auto_ptr< uchar > mOctreeData;
|
||
|
uint _28;
|
||
|
CAABox mSearchBounds;
|
||
|
};
|
||
|
|
||
|
#endif // _CPVSVISOCTREE
|