This commit is contained in:
IlyaShurupov 2024-06-19 12:28:30 +03:00 committed by Ilya Shurupov
parent 351a5d842e
commit 8b54ca0216
10 changed files with 87 additions and 20 deletions

View file

@ -39,7 +39,7 @@ bool TrigCache::castRay(const Ray& ray) const {
static halnf a, f, u, v;
static halnf t;
if (ray.dir.dot(mNormal) > 0) {
if (ray.dir.dot(mNormal) > 0 && 0) {
return false;
}