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

inforder basics

This commit is contained in:
Zeno Rogue
2019-10-10 13:08:06 +02:00
parent e799f76e5d
commit b5f6e6f3f5
10 changed files with 66 additions and 5 deletions

View File

@@ -484,7 +484,7 @@ void geometry_information::prepare_basics() {
goto finish;
}
tessf = edge_of_triangle_with_angles(2*M_PI/S3, M_PI/S7, M_PI/S7);
tessf = edge_of_triangle_with_angles(S3 >= OINF ? 0 : 2*M_PI/S3, M_PI/S7, M_PI/S7);
if(elliptic && S7 == 4) tessf = M_PI/2;