From ff10fa64e26c9377118e1258d54206d042ebeccc Mon Sep 17 00:00:00 2001 From: Tyler Gregorcyk Date: Fri, 26 Jun 2026 13:06:52 -0500 Subject: [PATCH] Corrected comment in DebugDraw::DrawPoint Signed-off-by: Tyler Gregorcyk --- Source/Engine/Debug/DebugDraw.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Engine/Debug/DebugDraw.cpp b/Source/Engine/Debug/DebugDraw.cpp index aeb2cb747..0f6ea9c2f 100644 --- a/Source/Engine/Debug/DebugDraw.cpp +++ b/Source/Engine/Debug/DebugDraw.cpp @@ -1548,7 +1548,7 @@ void DebugDraw::DrawPoint(const Vector3& position, float radius, const Color& co Matrix::CreateWorld(positionF, normal, up, world); Matrix::Multiply(scale, world, matrix); - // Draw lines of the unit circle after linear transform + // Build a filled disc as a triangle fan from the center over the transformed unit circle points PROFILE_MEM(EngineDebug); Float3 prev = Float3::Transform(CircleCache[0], matrix); for (int32 i = 1; i < DEBUG_DRAW_CIRCLE_VERTICES;)