1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-04-05 18:27:01 +00:00

fixed sidewall sorting in Euclidean

This commit is contained in:
Zeno Rogue 2025-03-17 00:08:57 +01:00
parent efd1a18104
commit a74495265a

View File

@ -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);
}