1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/** \file
* \brief HSI Color Manipulation
* Copied and adapted from IM
*
* See Copyright Notice in "iup.h"
*/
#ifndef __IUP_COLORHSI_H
#define __IUP_COLORHSI_H
#if defined(__cplusplus)
extern "C" {
#endif
/* 0<=H<=359 */
/* 0<=S<=1 */
/* 0<=I<=1 */
/* Converts from RGB to HSI.
*/
void iupColorRGB2HSI(unsigned char r, unsigned char g, unsigned char b, float *h, float *s, float *i);
/* Converts from HSI to RGB.
*/
void iupColorHSI2RGB(float h, float s, float i, unsigned char *r, unsigned char *g, unsigned char *b);
int iupStrToHSI(const char *str, float *h, float *s, float *i);
#ifdef IUP_DEFMATHFLOAT
#define atan2f(_X, _Y) ((float)atan2((double)_X, (double)_Y))
#define cosf(_X) ((float)cos((double)_X))
#define fmodf(_X, _Y) ((float)fmod((double)_X, (double)_Y))
#define sinf(_X) ((float)sin((double)_X))
#define sqrtf(_X) ((float)sqrt((double)_X))
#endif
#if defined(__cplusplus)
}
#endif
#endif
|