From f365bc41b821ec72285eac50d83693f526ecf3b7 Mon Sep 17 00:00:00 2001 From: Zhensheng Yuan <564361+yzslab@users.noreply.github.com> Date: Mon, 16 Sep 2024 22:57:56 +0800 Subject: [PATCH] Fix typo --- internal/renderers/partition_lod_renderer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/renderers/partition_lod_renderer.py b/internal/renderers/partition_lod_renderer.py index 577af8a0..f6ceda9f 100644 --- a/internal/renderers/partition_lod_renderer.py +++ b/internal/renderers/partition_lod_renderer.py @@ -181,7 +181,7 @@ def forward( partition_lods[partition_distances < self.lod_thresholds[i]] = i # visibility - # TODO: optimize visibility based filter, it does correctly know whether a partition partly in front of the camera is invisible + # TODO: optimize visibility based filter, it does not correctly know whether a partition partly in front of the camera is invisible is_partition_visible = torch.ones_like(self.is_partition_visible) if self.config.visibility_filter: full_perspective_projection = viewpoint_camera.get_full_perspective_projection()