1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-24 06:03:23 +00:00

fixed optimizeview in Euclidean syntetic

This commit is contained in:
Zeno Rogue 2018-08-19 01:04:15 +02:00
parent 5202511c57
commit d5175882f6

View File

@ -810,7 +810,8 @@ void optimizeview() {
heptagon *h2 = createStep(viewctr.at, i);
transmatrix T = (binarytiling) ? binary::relative_matrix(h2, viewctr.at) : synt::relative_matrix(h2, viewctr.at);
hyperpoint H = View * tC0(T);
if(H[2] < best) best = H[2], turn = i, TB = T;
ld quality = euclid ? hdist0(H) : H[2];
if(quality < best) best = quality, turn = i, TB = T;
}
if(turn >= 0) {
View = View * TB;