Skip to content

Commit 7ad1738

Browse files
committed
Update raylib.h
1 parent f4abc05 commit 7ad1738

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/raylib.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1288,8 +1288,8 @@ RLAPI Color Fade(Color color, float alpha); // R
12881288
RLAPI int ColorToInt(Color color); // Returns hexadecimal value for a Color
12891289
RLAPI Vector4 ColorNormalize(Color color); // Returns Color normalized as float [0..1]
12901290
RLAPI Color ColorFromNormalized(Vector4 normalized); // Returns Color from normalized values [0..1]
1291-
RLAPI Vector3 ColorToHSV(Color color); // Returns HSV values for a Color
1292-
RLAPI Color ColorFromHSV(float hue, float saturation, float value); // Returns a Color from HSV values
1291+
RLAPI Vector3 ColorToHSV(Color color); // Returns HSV values for a Color, hue [0..360], saturation/value [0..1]
1292+
RLAPI Color ColorFromHSV(float hue, float saturation, float value); // Returns a Color from HSV values, hue [0..360], saturation/value [0..1]
12931293
RLAPI Color ColorAlpha(Color color, float alpha); // Returns color with alpha applied, alpha goes from 0.0f to 1.0f
12941294
RLAPI Color ColorAlphaBlend(Color dst, Color src, Color tint); // Returns src alpha-blended into dst color with tint
12951295
RLAPI Color GetColor(int hexValue); // Get Color structure from hexadecimal value

0 commit comments

Comments
 (0)