From c6e9772def4be6d87feade6af3a7eb6f7f5f0b4d Mon Sep 17 00:00:00 2001 From: ksuprynowicz Date: Fri, 13 Oct 2023 22:12:06 +0200 Subject: [PATCH] Update comment in interface/src/LODManager.cpp MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Julian Groß --- interface/src/LODManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/LODManager.cpp b/interface/src/LODManager.cpp index ef4a181a91..fdd1b51fb3 100644 --- a/interface/src/LODManager.cpp +++ b/interface/src/LODManager.cpp @@ -316,7 +316,7 @@ bool LODManager::shouldRender(const RenderArgs* args, const AABox& bounds) { // we are comparing the square of the half tangent apparent angle for the bound against the LODAngle Half tangent square // if smaller, the bound is too small and we should NOT render it, return true otherwise. - // TODO: maybe include avatar size in calculating near and far distance? + // TODO: maybe include own avatar size in calculating near and far distance? // Tangent Adjacent side is eye to bound center vector length auto pos = args->getViewFrustum().getPosition() - bounds.calcCenter();