1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-16 10:19:58 +00:00

fixed spherical geometry

This commit is contained in:
Zeno Rogue 2022-04-27 23:55:16 +02:00
parent 8e8de810fe
commit 41d1ac743c

View File

@ -44,7 +44,7 @@ void geometry_information::hpcpush(hyperpoint h) {
hpc.push_back(starting_ideal); hpc.push_back(starting_ideal);
} }
else if(c > 0) { else if(c > 0) {
hpc.push_back(normalize(h)); hpc.push_back(starting_ideal = starting_point = last_point = last_ideal = normalize(h));
} }
} }
else { else {