소스 검색

test: fix vertex positions to match our simplex implementation.

undefined
Sam Hocevar 10 년 전
부모
커밋
a4cbf3fcb2
1개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. +4
    -3
      demos/test/simplex.cpp

+ 4
- 3
demos/test/simplex.cpp 파일 보기

@@ -21,7 +21,7 @@ int main(int argc, char **argv)
{
UNUSED(argc, argv);

int const period = 2;
int const period = 10;
float const zoom = 0.03f;

/* Create some gradients */
@@ -50,8 +50,9 @@ int main(int argc, char **argv)
}

/* Mark simplex vertices */
vec2 dx(1.f, 0.f);
vec2 dy = mat2::rotate(60.f) * dx;
vec2 diagonal = normalize(vec2(1.f));
vec2 dx = mat2::rotate(60.f) * diagonal;
vec2 dy = mat2::rotate(-60.f) * diagonal;
for (int j = -100; j < 100; ++j)
for (int i = -100; i < 100; ++i)
{


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