Reverting normal cone introduction
This commit is contained in:
@@ -35,13 +35,13 @@ struct Frustum
|
||||
Plane basePlane;
|
||||
bool pointInside(float3 point)
|
||||
{
|
||||
if (dot(basePlane.n, point) + basePlane.d < 0.0f)
|
||||
if (dot(basePlane.n, point) + basePlane.d > 0.0f)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
for(int p = 0; p < 4; ++p)
|
||||
{
|
||||
if(dot(sides[p].n, point) + sides[p].d < 0.0f)
|
||||
if(dot(sides[p].n, point) + sides[p].d > 0.0f)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user