From c10906d34990a09ea2913183c050f023fbc42190 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 11 Oct 2022 20:00:13 +0200 Subject: [PATCH] fixed 'penrose staircases' in rot spaces --- graph.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graph.cpp b/graph.cpp index a2fa3772..66aa958c 100644 --- a/graph.cpp +++ b/graph.cpp @@ -4248,8 +4248,8 @@ EX subcellshape& generate_subcellshape_if_needed(cell *c, int id) { l.push_back(hybrid::get_corner(c1, i, 0, z)); else { l.push_back(ctr); - l.push_back(hybrid::get_corner(c1, i, 0, z)); - l.push_back(hybrid::get_corner(c1, i+1, 1, z)); + l.push_back(hybrid::get_corner(c1, i+1, 0, z)); + l.push_back(hybrid::get_corner(c1, i, 1, z)); l.push_back(ctr); l.push_back(hybrid::get_corner(c1, i, 1, z)); l.push_back(hybrid::get_corner(c1, i, 0, z));