From 42d9aa4ba39c46678a779ec0b890498656c0baf0 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 31 Oct 2024 20:09:47 +0100 Subject: [PATCH] fixed a bug with mdHorocyclic in SL2 --- hypgraph.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hypgraph.cpp b/hypgraph.cpp index 5367fbc5..2c5e8558 100644 --- a/hypgraph.cpp +++ b/hypgraph.cpp @@ -884,6 +884,8 @@ EX void apply_other_model(shiftpoint H_orig, hyperpoint& ret, eModel md) { ret[0] = H_orig.h[0] * z / d; ret[1] = H_orig.h[1] * z / d; ret[3] = 1; + if(!vrhr::rendering()) ret = lp_apply(ret); + break; } find_zlev(H);