Bläddra i källkod

Fixed issue with ImageDrawLine()

pull/1190/head
raysan5 5 år sedan
förälder
incheckning
0abe557af1
1 ändrade filer med 3 tillägg och 3 borttagningar
  1. +3
    -3
      src/textures.c

+ 3
- 3
src/textures.c Visa fil

@ -2073,9 +2073,9 @@ void ImageDrawCircleV(Image *dst, Vector2 center, int radius, Color color)
void ImageDrawLine(Image *dst, int startPosX, int startPosY, int endPosX, int endPosY, Color color) void ImageDrawLine(Image *dst, int startPosX, int startPosY, int endPosX, int endPosY, Color color)
{ {
int m = 2*(endPosY - startPosY); int m = 2*(endPosY - startPosY);
int slopeError = m - (startPosY - startPosX); int slopeError = m - (endPosX - startPosX);
for (int x = startPosX, y = startPosY; x <= startPosY; x++) for (int x = startPosX, y = startPosY; x <= endPosX; x++)
{ {
ImageDrawPixel(dst, x, y, color); ImageDrawPixel(dst, x, y, color);
slopeError += m; slopeError += m;
@ -2083,7 +2083,7 @@ void ImageDrawLine(Image *dst, int startPosX, int startPosY, int endPosX, int en
if (slopeError >= 0) if (slopeError >= 0)
{ {
y++; y++;
slopeError -= 2*(startPosY - startPosX); slopeError -= 2*(endPosX - startPosX);
} }
} }
} }

||||||
x
 
000:0
Laddar…
Avbryt
Spara