1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-17 14:17:10 +00:00

fixed broken models with orientation change

This commit is contained in:
Zeno Rogue
2020-09-16 14:03:46 +02:00
parent 9a8d386422
commit c6ed4ea736
2 changed files with 8 additions and 0 deletions

View File

@@ -2040,6 +2040,7 @@ EX void draw_boundary(int w) {
h[broken_coord] = -sin_auto(a*degree) * rem;
h[0] = sin_auto(a*degree) * eps * s;
h[unbroken_coord] = cos_auto(a*degree);
models::apply_orientation(h[1], h[0]);
curvepoint(h);
}
queuecurve(shiftless(Id), periodcolor, 0, PPR::CIRCLE).flags |= POLY_FORCEWIDE;