30 lines
302 B
C++
30 lines
302 B
C++
#ifndef MINECRAFT_RENDERING_FRUSTRUM_H_
|
|
#define MINECRAFT_RENDERING_FRUSTRUM_H_
|
|
|
|
namespace EFrustrumPlanes
|
|
{
|
|
enum Planes
|
|
{
|
|
Right,
|
|
Left,
|
|
Top,
|
|
Bottom,
|
|
Far,
|
|
Near
|
|
};
|
|
};
|
|
|
|
class FrustrumPlane
|
|
{
|
|
public:
|
|
|
|
};
|
|
|
|
class Frustrum
|
|
{
|
|
public:
|
|
|
|
};
|
|
|
|
#endif
|