libkipr  1.0.0
color.hpp
Go to the documentation of this file.
1 #ifndef _KIPR_COLOR_COLOR_HPP_
2 #define _KIPR_COLOR_COLOR_HPP_
3 
4 #include "kipr/export/export.h"
5 
6 struct Rgb
7 {
8  unsigned char r;
9  unsigned char g;
10  unsigned char b;
11 };
12 
13 struct Hsv
14 {
15  unsigned char h;
16  unsigned char s;
17  unsigned char v;
18 };
19 
20 #endif
Definition: color.hpp:14
unsigned char s
Definition: color.hpp:16
unsigned char v
Definition: color.hpp:17
unsigned char h
Definition: color.hpp:15
Definition: color.hpp:7
unsigned char g
Definition: color.hpp:9
unsigned char r
Definition: color.hpp:8
unsigned char b
Definition: color.hpp:10