Revision: | 45 |
Committed: | Tue Sep 6 18:19:20 2011 UTC (10 years, 10 months ago) by gpertea | File size: | 332 byte(s) |
Log Message: | added gfview files |
Line | User | Rev | File contents |
---|---|---|---|
1 | gpertea | 45 | /* |
2 | * clrutils.h | ||
3 | * | ||
4 | * Created on: Sep 16, 2008 | ||
5 | */ | ||
6 | |||
7 | #ifndef CLRUTILS_H_ | ||
8 | #define CLRUTILS_H_ | ||
9 | #include "fx.h" | ||
10 | |||
11 | FXColor hls2rgb(int &H, int &L, int &S); | ||
12 | void rgb2hls(FXColor color, int &H, int &L, int &S); | ||
13 | FXColor modhls (FXColor src, int h, int l, int s); | ||
14 | FXColor getRColor(FXColor base, int range, int i); | ||
15 | #endif /* CLRUTILS_H_ */ |