소스 검색

math: fix a refactoring blunder.

undefined
Sam Hocevar 9 년 전
부모
커밋
acef0b216f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/lol/math/noise/simplex.h

+ 1
- 1
src/lol/math/noise/simplex.h 파일 보기

@@ -96,7 +96,7 @@ protected:
for (int i = 0; i < N; ++i)
for (int j = i + 1; j < N; ++j)
if (pos[traversal_order[i]] < pos[traversal_order[j]])
traversal_order.swap(i, j);
std::swap(traversal_order[i], traversal_order[j]);


/* Get the position in world coordinates, too */


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