Lephisto/src/Frustum.h
2012-04-07 16:38:56 +01:00

24 lines
416 B
C++

/* This software is the propery of 'SaraCraft' - developed by Allanis.
* Only members directly assosiated with the SaraCraft project may view/change
* this code.
*/
#ifndef _FRUSTUM_H_
#define _FRUSTUM_H_
class BoundBox;
// Frustum used for culling quadtree
class Frustum {
public:
// Extracts projection data
void getFrustum();
bool checkBox(BoundBox *box);
private:
float frustum[6][4];
};
#endif