1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-09-28 14:08:40 +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);
}
else if(c > 0) {
hpc.push_back(normalize(h));
hpc.push_back(starting_ideal = starting_point = last_point = last_ideal = normalize(h));
}
}
else {