1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-30 21:42:59 +00:00

slr:: works with bitruncated tilings (Archimedean not tested)

This commit is contained in:
Zeno Rogue
2019-08-26 15:09:08 +02:00
parent 86ca34669a
commit a0140254c8
7 changed files with 101 additions and 93 deletions

View File

@@ -578,8 +578,8 @@ void geometry_information::prepare_basics() {
if(sl2) {
single_step = S3 * S7 - 2 * S7 - 2 * S3;
steps = 2 * S7;
println(hlog, "steps = ", steps, " / ", single_step);
if(BITRUNCATED) steps *= S3;
DEBB(DF_GEOM | DF_POLY, ("steps = ", steps, " / ", single_step));
plevel = M_PI * single_step / steps;
}