![]() |
![]()
| ![]() |
![]()
NAMEhsv_to_rgb, rgb_to_hsv - Converts color values between the HSV and RGB color spaces. Allegro game programming library. SYNOPSIS#include <allegro.h> void hsv_to_rgb(float h, float s, float v, int *r, int *g, int *b); void rgb_to_hsv(int r, int g, int b, float *h, float *s, float *v); DESCRIPTIONConvert color values between the HSV and RGB color spaces. The RGB values range from 0 to 255, hue is from 0 to 360, and saturation and value are from 0 to 1. Example:
SEE ALSOexlights(3), exrgbhsv(3)
|