From a74495265af79a7867fe48fdbd729acd17fd544f Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 17 Mar 2025 00:08:57 +0100 Subject: [PATCH] fixed sidewall sorting in Euclidean --- drawing.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/drawing.cpp b/drawing.cpp index cf1ede9b..ab55c01b 100644 --- a/drawing.cpp +++ b/drawing.cpp @@ -2310,6 +2310,7 @@ EX void quickqueue() { ld xintval(const shiftpoint& h) { if(sphere_flipped) return -h.h[2]; if(hyperbolic) return -h.h[2]; + if(euclid) return -hypot(h.h[0], h.h[1]); return -intval(h.h, C0); }