diff options
| author | bXi <[email protected]> | 2022-09-26 12:24:10 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-09-26 12:24:10 +0200 |
| commit | e9ca38fafa603cf146e385456e9ccfcb6f15df70 (patch) | |
| tree | 1a4a737790b4be4845bf06e353d323367ed1cca6 | |
| parent | 7ab056b6efb0764967c80439c15eed828b6ae1c4 (diff) | |
| download | raylib-e9ca38fafa603cf146e385456e9ccfcb6f15df70.tar.gz raylib-e9ca38fafa603cf146e385456e9ccfcb6f15df70.zip | |
Clarified working of ImageDrawCircle and ImageDrawCircleV (#2719)
| -rw-r--r-- | src/raylib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/raylib.h b/src/raylib.h index 84a18ebe..df59ffef 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1285,8 +1285,8 @@ RLAPI void ImageDrawPixel(Image *dst, int posX, int posY, Color color); RLAPI void ImageDrawPixelV(Image *dst, Vector2 position, Color color); // Draw pixel within an image (Vector version) RLAPI void ImageDrawLine(Image *dst, int startPosX, int startPosY, int endPosX, int endPosY, Color color); // Draw line within an image RLAPI void ImageDrawLineV(Image *dst, Vector2 start, Vector2 end, Color color); // Draw line within an image (Vector version) -RLAPI void ImageDrawCircle(Image *dst, int centerX, int centerY, int radius, Color color); // Draw circle within an image -RLAPI void ImageDrawCircleV(Image *dst, Vector2 center, int radius, Color color); // Draw circle within an image (Vector version) +RLAPI void ImageDrawCircle(Image *dst, int centerX, int centerY, int radius, Color color); // Draw a filled circle within an image +RLAPI void ImageDrawCircleV(Image *dst, Vector2 center, int radius, Color color); // Draw a filled circle within an image (Vector version) RLAPI void ImageDrawCircleLines(Image *dst, int centerX, int centerY, int radius, Color color); // Draw circle outline within an image RLAPI void ImageDrawCircleLinesV(Image *dst, Vector2 center, int radius, Color color); // Draw circle outline within an image (Vector version) RLAPI void ImageDrawRectangle(Image *dst, int posX, int posY, int width, int height, Color color); // Draw rectangle within an image |
