소스 검색

simplex_interpolator: bug fix (enough for tonight)

undefined
Guillaume Bittoun Sam Hocevar <sam@hocevar.net> 10 년 전
부모
커밋
a0e31dd6ce
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/lol/math/simplex_interpolator.h

+ 2
- 2
src/lol/math/simplex_interpolator.h 파일 보기

@@ -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;
}


불러오는 중...
취소
저장