68 inline void set(
const array<float, 4>& color) {
79 inline void set(
float r,
float g,
float b,
float a) {
101 inline void add(
float r,
float g,
float b,
float a) {
220 return (array<float, 4>&)
data;
246 return (
this == &c) || (
247 Math::abs(
data[0] - c.
data[0]) < Math::EPSILON &&
248 Math::abs(
data[1] - c.
data[1]) < Math::EPSILON &&
249 Math::abs(
data[2] - c.
data[2]) < Math::EPSILON &&
250 Math::abs(
data[3] - c.
data[3]) < Math::EPSILON
Color 4 base definition class.
array< float, 4 > & getArray() const
void set(const array< float, 4 > &color)
Set up color.
void setGreen(float green)
Color4Base & sub(const Color4Base &color)
Subtracts color from this color.
Color4Base & add(const Color4Base &color)
Add color to this color.
void setAlpha(float alpha)
Color4Base & scale(const Color4Base &scale)
Scale this color.
Color4Base(const Color4Base &color)
Public constructor.
Color4Base(const array< float, 4 > &color)
Public constructor.
void add(float r, float g, float b, float a)
Add to color.
Color4Base(float r, float g, float b, float a)
Public constructor.
Color4Base()
Public constructor.
const float & operator[](int i) const
Const array access operator.
float & operator[](int i)
Array access operator.
void set(const Color4Base &color)
Sets up this color with given color.
bool equals(const Color4Base &c) const
Compares this color with given color.
Color4Base & scale(float scale)
Scale this color.
void set(float r, float g, float b, float a)
Set up color.