blob: e41a5aa759a1ca91f7e6c27274ba7187cf13b103 (
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
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
/*
math/color.cc
This file is part of the Osirion project and is distributed under
the terms of the GNU General Public License version 2
*/
// project headers
#include "math/color.h"
namespace math {
Color::Color() {
_r = _g = _b = 0.0f;
_a = 1.0f;
}
Color::Color(const float red, const float green , const float blue , const float alpha) {
_r = red;
_g = green;
_b = blue;
_a = alpha;
}
Color::Color(const float grey, const float alpha) {
_r = _g = _b = grey;
_a = alpha;
}
Color::Color(const Color &other) {
this->operator=(other);
}
const Color & Color::operator=(const Color &other) {
this->_r = other._r;
this->_g = other._g;
this->_b = other._b;
this->_a = other._a;
return (*this);
}
void Color::normalize() {
float tmp = _r;
if (_g > tmp)
tmp = _g;
if ( _b > tmp)
tmp = _b;
if (tmp > 1) {
_r /= tmp;
_g /= tmp;
_b /= tmp;
}
}
float Color::red() const {
return _r;
}
float Color::green() const {
return _g;
}
float Color::blue() const {
return _b;
}
float Color::alpha() const {
return _a;
}
Color Color::operator*(float scalar) const {
return Color(red()*scalar, green()*scalar, blue()*scalar, alpha());
}
Color operator*(float scalar, const Color& color) {
return color * scalar;
}
std::ostream &operator<<(std::ostream &os, const Color &c) {
os << c.red() << " " << c.green() << " " << c.blue() << " " << c.alpha();
return os;
}
} // namespace math
|