diff options
| author | Dane Madsen <[email protected]> | 2023-05-24 17:22:51 +1000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-05-24 09:22:51 +0200 |
| commit | e465ed0850106a3574d01363874ae49ef7e478c9 (patch) | |
| tree | 937d11d54cac0c6b5282e6797f298aadf99524c1 /parser/output/raylib_api.json | |
| parent | bf69b3805601627a509b92600c9b70efcddfedeb (diff) | |
| download | raylib-e465ed0850106a3574d01363874ae49ef7e478c9.tar.gz raylib-e465ed0850106a3574d01363874ae49ef7e478c9.zip | |
Added ImageRotate (#3078)
* Added ImageRotate
* Quick rename of the example
* Update ImageRotate by changing doubles to floats and checking code convention
* Update API
Diffstat (limited to 'parser/output/raylib_api.json')
| -rw-r--r-- | parser/output/raylib_api.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/parser/output/raylib_api.json b/parser/output/raylib_api.json index 4438ab0d..b42f03a8 100644 --- a/parser/output/raylib_api.json +++ b/parser/output/raylib_api.json @@ -6758,6 +6758,21 @@ ] }, { + "name": "ImageRotate", + "description": "Rotate image by input angle in degrees (-359 to 359) ", + "returnType": "void", + "params": [ + { + "type": "Image *", + "name": "image" + }, + { + "type": "int", + "name": "degrees" + } + ] + }, + { "name": "ImageRotateCW", "description": "Rotate image clockwise 90deg", "returnType": "void", |
