2016-04-14 21:42:47 +00:00
|
|
|
#include "CFrustumPlanes.hpp"
|
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
|
|
|
|
CFrustumPlanes::CFrustumPlanes(const zeus::CTransform& cameraXf, float, float, float, bool, float)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CFrustumPlanes::PointInFrustumPlanes(const zeus::CVector3f& point) const
|
|
|
|
{
|
2016-05-21 03:02:09 +00:00
|
|
|
return false;
|
2016-04-14 21:42:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CFrustumPlanes::SphereInFrustumPlanes(const zeus::CSphere& sphere) const
|
|
|
|
{
|
2016-05-21 03:02:09 +00:00
|
|
|
return false;
|
2016-04-14 21:42:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CFrustumPlanes::BoxInFrustumPlanes(const zeus::CAABox& box) const
|
|
|
|
{
|
2016-05-21 03:02:09 +00:00
|
|
|
return false;
|
2016-04-14 21:42:47 +00:00
|
|
|
}
|
|
|
|
|
2016-04-29 10:08:46 +00:00
|
|
|
bool CFrustumPlanes::BoxInFrustumPlanes(const rstl::optional_object<zeus::CAABox>& box) const
|
2016-04-14 21:42:47 +00:00
|
|
|
{
|
2016-05-21 03:02:09 +00:00
|
|
|
return false;
|
2016-04-14 21:42:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|