소스 검색

Corrected issue on DrawPolyEx()

pull/189/head
Ray 9 년 전
부모
커밋
2ae9ce29eb
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/shapes.c

+ 2
- 2
src/shapes.c 파일 보기

@ -347,11 +347,11 @@ void DrawPolyEx(Vector2 *points, int numPoints, Color color)
rlBegin(RL_TRIANGLES);
rlColor4ub(color.r, color.g, color.b, color.a);
for (int i = 0; i < numPoints - 2; i++)
for (int i = 1; i < numPoints - 1; i++)
{
rlVertex2f(points[0].x, points[0].y);
rlVertex2f(points[i].x, points[i].y);
rlVertex2f(points[i + 1].x, points[i + 1].y);
rlVertex2f(points[i + 2].x, points[i + 2].y);
}
rlEnd();
}

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