Input range is 0.0 -> 1.0
| 27 | void Mul(const Color3i& other_color); |
| 28 | void Mulf(float scale); // Input range is 0.0 -> 1.0 |
| 29 | void Mul(uint8_t val) { |
| 30 | Mul(Color3i(val, val, val)); |
| 31 | } |
| 32 | void Sub(const Color3i& color); |
| 33 | void Add(const Color3i& color); |
| 34 | uint8_t Get(int rgb_index) const; |