diff options
| author | Julianiolo <[email protected]> | 2021-04-23 17:16:44 +0200 |
|---|---|---|
| committer | Julianiolo <[email protected]> | 2021-04-23 17:16:44 +0200 |
| commit | 65092574754d3bb2b86d44dce369389cb598ba7c (patch) | |
| tree | 4cc34e559f8ac75fd16c54544c22c3903b2d66bc | |
| parent | 72f0c901c6e0fab84af4dd4c913aaa5bbe0e4c60 (diff) | |
| download | raylib.com-65092574754d3bb2b86d44dce369389cb598ba7c.tar.gz raylib.com-65092574754d3bb2b86d44dce369389cb598ba7c.zip | |
Revert "updated HSV in cheatsheet"
This reverts commit 72f0c901c6e0fab84af4dd4c913aaa5bbe0e4c60.
| -rw-r--r-- | cheatsheet/raylib_textures.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cheatsheet/raylib_textures.c b/cheatsheet/raylib_textures.c index 98c4c6a..edb1eb8 100644 --- a/cheatsheet/raylib_textures.c +++ b/cheatsheet/raylib_textures.c @@ -103,8 +103,8 @@ int ColorToInt(Color color); // Returns hexadecimal value for a Color Vector4 ColorNormalize(Color color); // Returns Color normalized as float [0..1] Color ColorFromNormalized(Vector4 normalized); // Returns Color from normalized values [0..1] - Vector3 ColorToHSV(Color color); // Returns HSV values for a Color, hue [0..360], saturation/value [0..1] - Color ColorFromHSV(float hue, float saturation, float value); // Returns a Color from HSV values, hue [0..360], saturation/value [0..1] + Vector3 ColorToHSV(Color color); // Returns HSV values for a Color + Color ColorFromHSV(float hue, float saturation, float value); // Returns a Color from HSV values Color ColorAlpha(Color color, float alpha); // Returns color with alpha applied, alpha goes from 0.0f to 1.0f Color ColorAlphaBlend(Color dst, Color src, Color tint); // Returns src alpha-blended into dst color with tint Color GetColor(int hexValue); // Get Color structure from hexadecimal value |
