Przeglądaj źródła

simplex_interpolator: bug fix (enough for tonight)

undefined
Guillaume Bittoun Sam Hocevar <sam@hocevar.net> 10 lat temu
rodzic
commit
a0e31dd6ce
1 zmienionych plików z 2 dodań i 2 usunięć
  1. +2
    -2
      src/lol/math/simplex_interpolator.h

+ 2
- 2
src/lol/math/simplex_interpolator.h Wyświetl plik

@@ -70,8 +70,8 @@ protected:

T norm = sqrt((float)N);

result += (1 - 4 * floor_coeff / (norm * norm)) * this->samples[floor_point];
divider += (1 - 4 * floor_coeff / (norm * norm));
result += (1 - 2 * floor_coeff / (norm * norm)) * this->samples[floor_point];
divider += (1 - 2 * floor_coeff / (norm * norm));

return result / divider;
}


Ładowanie…
Anuluj
Zapisz