From 2a4c7bd565ef3387ee3f71e6d1c5cdc83f83054f Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 31 May 2021 16:11:49 +0200 Subject: [PATCH] fixed dice too large --- complex2.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/complex2.cpp b/complex2.cpp index b6eb6645..27372eb6 100644 --- a/complex2.cpp +++ b/complex2.cpp @@ -1225,6 +1225,8 @@ EX namespace dice { if(dw->faces == 8) dieradius /= 1.15; if(dw->faces == 12) dieradius /= 1.15; + if(hyperbolic) dieradius /= 1.3; + ld base_to_base; bool osphere = sphere && GDIM == 2;