瀏覽代碼

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 */


Loading…
取消
儲存