libkovan  1
The kovan standard library
color.hpp
Go to the documentation of this file.
1 #ifndef _COLOR_HPP_
2 #define _COLOR_HPP_
3 
4 #include "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
21 
22 
unsigned char v
Definition: color.hpp:17
unsigned char b
Definition: color.hpp:10
unsigned char r
Definition: color.hpp:8
unsigned char s
Definition: color.hpp:16
Definition: color.hpp:6
Definition: color.hpp:13
unsigned char g
Definition: color.hpp:9
unsigned char h
Definition: color.hpp:15