1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-20 07:35:13 +00:00

vertical stretch parameter is now available in all models; more details in equi-area

This commit is contained in:
Zeno Rogue
2018-08-01 04:01:16 +02:00
parent 1e15992a22
commit 5e2a65a781
7 changed files with 59 additions and 30 deletions

View File

@@ -317,7 +317,7 @@ void applymodel(hyperpoint H, hyperpoint& ret) {
break;
}
case mdBandEquiarea: {
y = sin_auto(y) * vid.stretch;
y = sin_auto(y);
break;
}
case mdSinusoidal: {
@@ -325,7 +325,6 @@ void applymodel(hyperpoint H, hyperpoint& ret) {
break;
}
case mdBandEquidistant: {
y *= vid.stretch;
break;
}
default: {