| 114 | } |
| 115 | |
| 116 | uchar Color::hue_mono(Hue h) { |
| 117 | return hue_monos[(int)h]; |
| 118 | } |
| 119 | |
| 120 | Hue Color::mono_hue(uchar c) { |
| 121 | return mono_hues[c / (0x100 / NUM_HUES)]; // [0, 255] -> [0, 3] |
nothing calls this directly
no outgoing calls
no test coverage detected