blob: 2c5cea43fa2cc8be9febc7bb8f141128689f1aa6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef FRUSTUM_H
#define FRUSTUM_H
class FRUSTUM {
public:
float frustum[6][4];
void GetFrustum();
int CubeInFrustum(float, float, float, float);
int CubeInFrustum(float, float, float, float, float);
int SphereInFrustum(float, float, float, float);
};
#endif
|