blob: 2c89a1cad7222fab776148a8a1a7c975ec171d08 (
plain)
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
|
#ifndef COLOR_HPP_
#define COLOR_HPP_
/**
* Keeps track of an RGBA color.
*/
class Color{
public:
float red; /**< The amount of red, 0-255 or 0.0-1.0 depending on usage */
float green; /**< The amount of green */
float blue; /**< The amount of blue */
float alpha; /**< Transparency */
Color(float r = 0, float g = 0, float b = 0, float a = 255)
: red(r), green(g), blue(b), alpha(a) {}
Color operator-(const float& a) {
return Color(red - a, green - a, blue - a, alpha);
}
Color operator+(const float& a) {
return Color(red + a, green + a, blue + a, alpha);
}
};
#endif // COLOR_HPP_
|