fixed missing miller config

This commit is contained in:
Zeno Rogue 2020-09-16 14:48:23 +02:00
parent 11b1f6dfb0
commit 4d71857d7b
1 changed files with 2 additions and 2 deletions

View File

@ -839,9 +839,9 @@ EX void apply_other_model(shiftpoint H_orig, hyperpoint& ret, eModel md) {
case mdMiller:
makeband(H_orig, ret, [] (ld& x, ld& y) {
// y *= pconf.miller_parameter;
y *= pconf.miller_parameter;
band_conformal(x, y);
// y /= pconf.miller_parameter;
y /= pconf.miller_parameter;
});
break;