Reverting normal cone introduction

This commit is contained in:
Dynamitos
2023-12-15 18:33:47 +01:00
parent e233fb9c5b
commit c409a3acd0
8 changed files with 53 additions and 56 deletions
+2 -2
View File
@@ -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;
}