From 8fb96b83db8d525fe559def93e346eedb742ff6c Mon Sep 17 00:00:00 2001 From: Orange Date: Mon, 23 Mar 2026 23:52:41 +0300 Subject: [PATCH] removed dead code --- include/omath/projection/camera.hpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/include/omath/projection/camera.hpp b/include/omath/projection/camera.hpp index ee0c323..e6db8bf 100644 --- a/include/omath/projection/camera.hpp +++ b/include/omath/projection/camera.hpp @@ -411,13 +411,6 @@ namespace omath::projection return true; } - // w - if constexpr (ndc.size().rows * ndc.size().columns > 3) - { - if (data[3] < -1.0f - eps || data[3] > 1.0f + eps) - return true; - } - return false; }