Definition at line 67 of file color.cpp.
67 {
68 if (0.0f >= t) {
70 } else if (1.0f <= t) {
71 return;
72 }
73
74 Color3i new_color = other_color;
75 new_color.
Mul(1.0f - t);
78}
void Add(const Color3i &color)
Color3i(uint8_t r, uint8_t g, uint8_t b)
void Mul(const Color3i &other_color)
void Set(uint8_t r, uint8_t g, uint8_t b)
References Color3i(), Add(), Mul(), and Set().