Added Frustum class

Former-commit-id: 90b380e8f8ff21333d081aed0fd65de0393a0242
This commit is contained in:
Lynix
2013-02-19 01:23:51 +01:00
parent 760470e3f0
commit 933a0c7f38
3 changed files with 512 additions and 0 deletions

View File

@@ -21,4 +21,25 @@ enum nzCorner
nzCorner_Max = nzCorner_NearRightTop
};
enum nzFrustumPlane
{
nzFrustumPlane_Bottom,
nzFrustumPlane_Far,
nzFrustumPlane_Left,
nzFrustumPlane_Near,
nzFrustumPlane_Right,
nzFrustumPlane_Top,
nzFrustumPlane_Max = nzFrustumPlane_Top
};
enum nzIntersectionSide
{
nzIntersectionSide_Inside,
nzIntersectionSide_Intersecting,
nzIntersectionSide_Outside,
nzIntersectionSide_Max = nzIntersectionSide_Outside
};
#endif // NAZARA_ENUMS_MATH_HPP