From 6505c6f4f5b3889feb470d07884eeed58b0fc706 Mon Sep 17 00:00:00 2001 From: Dane Madsen Date: Wed, 24 May 2023 10:43:18 +1000 Subject: Update raylib_textures.c with new ImageRotate --- cheatsheet/raylib_textures.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cheatsheet/raylib_textures.c b/cheatsheet/raylib_textures.c index 7beb305..f47c97c 100644 --- a/cheatsheet/raylib_textures.c +++ b/cheatsheet/raylib_textures.c @@ -43,6 +43,7 @@ void ImageDither(Image *image, int rBpp, int gBpp, int bBpp, int aBpp); // Dither image data to 16bpp or lower (Floyd-Steinberg dithering) void ImageFlipVertical(Image *image); // Flip image vertically void ImageFlipHorizontal(Image *image); // Flip image horizontally + void ImageRotate(Image *image, int degrees); // Rotate image by input angle in degrees (-359 to 359) void ImageRotateCW(Image *image); // Rotate image clockwise 90deg void ImageRotateCCW(Image *image); // Rotate image counter-clockwise 90deg void ImageColorTint(Image *image, Color color); // Modify image color: tint -- cgit v1.2.3