libwallaby  v23
The wallaby standard library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
color.hpp
Go to the documentation of this file.
1 /*
2  * color.hpp
3  *
4  * Created on: Nov 13, 2015
5  * Author: Joshua Southerland
6  */
7 
8 #ifndef INCLUDE_WALLABY_COLOR_HPP_
9 #define INCLUDE_WALLABY_COLOR_HPP_
10 
11 
12 
13 #include "export.h"
14 
15 struct Rgb
16 {
17  unsigned char r;
18  unsigned char g;
19  unsigned char b;
20 };
21 
22 struct Hsv
23 {
24  unsigned char h;
25  unsigned char s;
26  unsigned char v;
27 };
28 
29 
30 
31 #endif /* INCLUDE_WALLABY_COLOR_HPP_ */
unsigned char v
Definition: color.hpp:26
unsigned char b
Definition: color.hpp:19
unsigned char r
Definition: color.hpp:17
unsigned char s
Definition: color.hpp:25
Definition: color.hpp:15
Definition: color.hpp:22
unsigned char g
Definition: color.hpp:18
unsigned char h
Definition: color.hpp:24