-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathColor.h
executable file
·53 lines (43 loc) · 1.05 KB
/
Color.h
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
45
46
47
48
49
50
51
52
53
/*
* Color.h
*
* Created on: 22 apr 2018
* Author: rodolfo
*
* Struttura che rappresenta un colore
*/
#ifndef COLOR_H_
#define COLOR_H_
struct Color{
public:
/*
* Costruttore Parametrizzato
* @param red gradazione rossa del colore
* @param green gradazione verde del colore
* @param blue gradazione blu del colore
* @param alpha gradazione di trasparenza del colore
*/
Color(unsigned char red, unsigned char green, unsigned char blue, unsigned char alpha) :
red(red),
green(green),
blue(blue),
alpha(alpha){
}
unsigned char red;
unsigned char green;
unsigned char blue;
unsigned char alpha;
};
/*
Namespace contenente i colori di default principali
*/
namespace Colors {
static Color TRASPARENT(0, 0, 0, 0); // trasparente
static Color WHITE(255, 255, 255, 255); // bianco
static Color BLACK(0, 0, 0, 0); // nero
static Color RED(255, 0, 0, 255); // rosso
static Color GREEN(0, 255, 0, 255); // verde
static Color BLUE(0, 0, 255, 255); // blu
static Color BACKGROUND(40, 255, 148, 255);
}
#endif /* COLOR_H_ */