1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-18 06:50:27 +00:00

removed unused comment

This commit is contained in:
Zeno Rogue 2019-08-14 20:30:51 +02:00
parent 4f88a7c727
commit d20b8108af

View File

@ -672,7 +672,6 @@ EX void applymodel(hyperpoint H, hyperpoint& ret) {
auto a = (sin_auto(2*theta) +2*theta - M_PI * sin_auto(y)); auto a = (sin_auto(2*theta) +2*theta - M_PI * sin_auto(y));
auto b = (2 + 2 * cos_auto(2*theta)); auto b = (2 + 2 * cos_auto(2*theta));
theta = theta - a / b; theta = theta - a / b;
// theta = theta - (sinh(2*theta) +2*K*theta - M_PI * sinh(y)) / (2 * K + 2 * cosh(2*theta));
} } } }
y = M_PI * sin_auto(theta) / 2; y = M_PI * sin_auto(theta) / 2;
x = x * cos_auto(theta); x = x * cos_auto(theta);