From 80bfed25fe157e8d2f5654f067d5d52e94cb6b53 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 21 Aug 2024 19:27:12 +0200 Subject: [PATCH] rogueviz:: smoothcam:: fixed e2xe --- rogueviz/smoothcam.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rogueviz/smoothcam.cpp b/rogueviz/smoothcam.cpp index 952abdb2..34d1292e 100644 --- a/rogueviz/smoothcam.cpp +++ b/rogueviz/smoothcam.cpp @@ -515,7 +515,8 @@ void prepare_for_interpolation(hyperpoint& h) { void after_interpolation(hyperpoint& h) { if(gproduct) { - ld v = exp(h[3]) / sqrt(abs(intval(h, Hypc))); + ld v = exp(h[3]); + if(!in_e2xe()) v /= sqrt(abs(intval(h, Hypc))); h[0] *= v; h[1] *= v; h[2] *= v;