49 {
50
51struct Vector4;
52
54
55
56
58
59
74
75
76
77
93
96};
97
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116struct ColorMatrix {
118};
119
120
121
122
123struct Color {
124
125
126
128
129
130
131
133
134
135
136
138
139
140
141
143
144 constexpr Color() {}
145
146 explicit Color(const Vector4& value);
147
148 constexpr Color(Scalar r, Scalar g, Scalar b, Scalar a)
149 : red(r), green(g), blue(
b), alpha(a) {}
150
151 static constexpr Color MakeRGBA8(uint8_t r, uint8_t g, uint8_t b, uint8_t a) {
152 return Color(
153 static_cast<Scalar>(r) / 255.0f,
static_cast<Scalar>(g) / 255.0f,
154 static_cast<Scalar>(b) / 255.0f,
static_cast<Scalar>(a) / 255.0f);
155 }
156
157
158 static inline uint32_t ToIColor(Color color) {
159 return (((std::lround(color.alpha * 255.0f) & 0xff) << 24) |
160 ((std::lround(color.red * 255.0f) & 0xff) << 16) |
161 ((std::lround(color.green * 255.0f) & 0xff) << 8) |
162 ((std::lround(color.blue * 255.0f) & 0xff) << 0)) &
163 0xFFFFFFFF;
164 }
165
166 constexpr inline bool operator==(
const Color& c)
const {
169 }
170
171 constexpr inline Color
operator+(
const Color& c)
const {
172 return {red + c.red, green + c.green, blue + c.blue, alpha + c.alpha};
173 }
174
175 template <class T, class = std::enable_if_t<std::is_arithmetic_v<T>>>
176 constexpr inline Color
operator+(T value)
const {
178 return {red + v, green + v, blue + v, alpha + v};
179 }
180
181 constexpr inline Color
operator-(
const Color& c)
const {
182 return {red - c.red, green - c.green, blue - c.blue, alpha - c.alpha};
183 }
184
185 template <class T, class = std::enable_if_t<std::is_arithmetic_v<T>>>
186 constexpr inline Color
operator-(T value)
const {
188 return {red - v, green - v, blue - v, alpha - v};
189 }
190
191 constexpr inline Color
operator*(
const Color& c)
const {
192 return {red * c.red, green * c.green, blue * c.blue, alpha * c.alpha};
193 }
194
195 template <class T, class = std::enable_if_t<std::is_arithmetic_v<T>>>
196 constexpr inline Color
operator*(T value)
const {
198 return {red * v, green * v, blue * v, alpha * v};
199 }
200
201 constexpr inline Color
operator/(
const Color& c)
const {
202 return {red * c.red, green * c.green, blue * c.blue, alpha * c.alpha};
203 }
204
205 template <class T, class = std::enable_if_t<std::is_arithmetic_v<T>>>
206 constexpr inline Color
operator/(T value)
const {
208 return {red / v, green / v, blue / v, alpha / v};
209 }
210
211 constexpr Color Premultiply() const {
212 return {red * alpha, green * alpha, blue * alpha, alpha};
213 }
214
215 constexpr Color Unpremultiply() const {
217 return Color::BlackTransparent();
218 }
219 return {red / alpha, green / alpha, blue / alpha, alpha};
220 }
221
222
223
224
225
226
227
228
229
230
231 constexpr static Color Lerp(Color a, Color b, Scalar t) {
232 return a + (
b - a) * t;
233 }
234
235 constexpr Color Clamp01() const {
236 return Color(std::clamp(red, 0.0f, 1.0f), std::clamp(green, 0.0f, 1.0f),
237 std::clamp(blue, 0.0f, 1.0f), std::clamp(alpha, 0.0f, 1.0f));
238 }
239
240
241
242
243
244
245 inline std::array<uint8_t, 4> ToR8G8B8A8() const {
246 uint8_t r = std::round(red * 255.0f);
247 uint8_t g = std::round(green * 255.0f);
248 uint8_t
b = std::round(blue * 255.0f);
249 uint8_t a = std::round(alpha * 255.0f);
251 }
252
253
254
255
256
257
258 inline uint32_t ToARGB() const {
259 std::array<uint8_t, 4> result = ToR8G8B8A8();
260 return result[3] << 24 | result[0] << 16 | result[1] << 8 | result[2];
261 }
262
263 static constexpr Color White() { return {1.0f, 1.0f, 1.0f, 1.0f}; }
264
265 static constexpr Color Black() { return {0.0f, 0.0f, 0.0f, 1.0f}; }
266
267 static constexpr Color WhiteTransparent() { return {1.0f, 1.0f, 1.0f, 0.0f}; }
268
269 static constexpr Color BlackTransparent() { return {0.0f, 0.0f, 0.0f, 0.0f}; }
270
271 static constexpr Color Red() { return {1.0f, 0.0f, 0.0f, 1.0f}; }
272
273 static constexpr Color Green() { return {0.0f, 1.0f, 0.0f, 1.0f}; }
274
275 static constexpr Color Blue() { return {0.0f, 0.0f, 1.0f, 1.0f}; }
276
277 constexpr Color WithAlpha(Scalar new_alpha) const {
278 return {red, green, blue, new_alpha};
279 }
280
281 static constexpr Color AliceBlue() {
282 return {240.0f / 255.0f, 248.0f / 255.0f, 255.0f / 255.0f, 1.0f};
283 }
284
285 static constexpr Color AntiqueWhite() {
286 return {250.0f / 255.0f, 235.0f / 255.0f, 215.0f / 255.0f, 1.0f};
287 }
288
289 static constexpr Color Aqua() {
290 return {0.0f / 255.0f, 255.0f / 255.0f, 255.0f / 255.0f, 1.0f};
291 }
292
293 static constexpr Color AquaMarine() {
294 return {127.0f / 255.0f, 255.0f / 255.0f, 212.0f / 255.0f, 1.0f};
295 }
296
297 static constexpr Color Azure() {
298 return {240.0f / 255.0f, 255.0f / 255.0f, 255.0f / 255.0f, 1.0f};
299 }
300
301 static constexpr Color Beige() {
302 return {245.0f / 255.0f, 245.0f / 255.0f, 220.0f / 255.0f, 1.0f};
303 }
304
305 static constexpr Color Bisque() {
306 return {255.0f / 255.0f, 228.0f / 255.0f, 196.0f / 255.0f, 1.0f};
307 }
308
309 static constexpr Color BlanchedAlmond() {
310 return {255.0f / 255.0f, 235.0f / 255.0f, 205.0f / 255.0f, 1.0f};
311 }
312
313 static constexpr Color BlueViolet() {
314 return {138.0f / 255.0f, 43.0f / 255.0f, 226.0f / 255.0f, 1.0f};
315 }
316
317 static constexpr Color Brown() {
318 return {165.0f / 255.0f, 42.0f / 255.0f, 42.0f / 255.0f, 1.0f};
319 }
320
321 static constexpr Color BurlyWood() {
322 return {222.0f / 255.0f, 184.0f / 255.0f, 135.0f / 255.0f, 1.0f};
323 }
324
325 static constexpr Color CadetBlue() {
326 return {95.0f / 255.0f, 158.0f / 255.0f, 160.0f / 255.0f, 1.0f};
327 }
328
329 static constexpr Color Chartreuse() {
330 return {127.0f / 255.0f, 255.0f / 255.0f, 0.0f / 255.0f, 1.0f};
331 }
332
333 static constexpr Color Chocolate() {
334 return {210.0f / 255.0f, 105.0f / 255.0f, 30.0f / 255.0f, 1.0f};
335 }
336
337 static constexpr Color Coral() {
338 return {255.0f / 255.0f, 127.0f / 255.0f, 80.0f / 255.0f, 1.0f};
339 }
340
341 static constexpr Color CornflowerBlue() {
342 return {100.0f / 255.0f, 149.0f / 255.0f, 237.0f / 255.0f, 1.0f};
343 }
344
345 static constexpr Color Cornsilk() {
346 return {255.0f / 255.0f, 248.0f / 255.0f, 220.0f / 255.0f, 1.0f};
347 }
348
349 static constexpr Color Crimson() {
350 return {220.0f / 255.0f, 20.0f / 255.0f, 60.0f / 255.0f, 1.0f};
351 }
352
353 static constexpr Color Cyan() {
354 return {0.0f / 255.0f, 255.0f / 255.0f, 255.0f / 255.0f, 1.0f};
355 }
356
357 static constexpr Color DarkBlue() {
358 return {0.0f / 255.0f, 0.0f / 255.0f, 139.0f / 255.0f, 1.0f};
359 }
360
361 static constexpr Color DarkCyan() {
362 return {0.0f / 255.0f, 139.0f / 255.0f, 139.0f / 255.0f, 1.0f};
363 }
364
365 static constexpr Color DarkGoldenrod() {
366 return {184.0f / 255.0f, 134.0f / 255.0f, 11.0f / 255.0f, 1.0f};
367 }
368
369 static constexpr Color DarkGray() {
370 return {169.0f / 255.0f, 169.0f / 255.0f, 169.0f / 255.0f, 1.0f};
371 }
372
373 static constexpr Color DarkGreen() {
374 return {0.0f / 255.0f, 100.0f / 255.0f, 0.0f / 255.0f, 1.0f};
375 }
376
377 static constexpr Color DarkGrey() {
378 return {169.0f / 255.0f, 169.0f / 255.0f, 169.0f / 255.0f, 1.0f};
379 }
380
381 static constexpr Color DarkKhaki() {
382 return {189.0f / 255.0f, 183.0f / 255.0f, 107.0f / 255.0f, 1.0f};
383 }
384
385 static constexpr Color DarkMagenta() {
386 return {139.0f / 255.0f, 0.0f / 255.0f, 139.0f / 255.0f, 1.0f};
387 }
388
389 static constexpr Color DarkOliveGreen() {
390 return {85.0f / 255.0f, 107.0f / 255.0f, 47.0f / 255.0f, 1.0f};
391 }
392
393 static constexpr Color DarkOrange() {
394 return {255.0f / 255.0f, 140.0f / 255.0f, 0.0f / 255.0f, 1.0f};
395 }
396
397 static constexpr Color DarkOrchid() {
398 return {153.0f / 255.0f, 50.0f / 255.0f, 204.0f / 255.0f, 1.0f};
399 }
400
401 static constexpr Color DarkRed() {
402 return {139.0f / 255.0f, 0.0f / 255.0f, 0.0f / 255.0f, 1.0f};
403 }
404
405 static constexpr Color DarkSalmon() {
406 return {233.0f / 255.0f, 150.0f / 255.0f, 122.0f / 255.0f, 1.0f};
407 }
408
409 static constexpr Color DarkSeagreen() {
410 return {143.0f / 255.0f, 188.0f / 255.0f, 143.0f / 255.0f, 1.0f};
411 }
412
413 static constexpr Color DarkSlateBlue() {
414 return {72.0f / 255.0f, 61.0f / 255.0f, 139.0f / 255.0f, 1.0f};
415 }
416
417 static constexpr Color DarkSlateGray() {
418 return {47.0f / 255.0f, 79.0f / 255.0f, 79.0f / 255.0f, 1.0f};
419 }
420
421 static constexpr Color DarkSlateGrey() {
422 return {47.0f / 255.0f, 79.0f / 255.0f, 79.0f / 255.0f, 1.0f};
423 }
424
425 static constexpr Color DarkTurquoise() {
426 return {0.0f / 255.0f, 206.0f / 255.0f, 209.0f / 255.0f, 1.0f};
427 }
428
429 static constexpr Color DarkViolet() {
430 return {148.0f / 255.0f, 0.0f / 255.0f, 211.0f / 255.0f, 1.0f};
431 }
432
433 static constexpr Color DeepPink() {
434 return {255.0f / 255.0f, 20.0f / 255.0f, 147.0f / 255.0f, 1.0f};
435 }
436
437 static constexpr Color DeepSkyBlue() {
438 return {0.0f / 255.0f, 191.0f / 255.0f, 255.0f / 255.0f, 1.0f};
439 }
440
441 static constexpr Color DimGray() {
442 return {105.0f / 255.0f, 105.0f / 255.0f, 105.0f / 255.0f, 1.0f};
443 }
444
445 static constexpr Color DimGrey() {
446 return {105.0f / 255.0f, 105.0f / 255.0f, 105.0f / 255.0f, 1.0f};
447 }
448
449 static constexpr Color DodgerBlue() {
450 return {30.0f / 255.0f, 144.0f / 255.0f, 255.0f / 255.0f, 1.0f};
451 }
452
453 static constexpr Color Firebrick() {
454 return {178.0f / 255.0f, 34.0f / 255.0f, 34.0f / 255.0f, 1.0f};
455 }
456
457 static constexpr Color FloralWhite() {
458 return {255.0f / 255.0f, 250.0f / 255.0f, 240.0f / 255.0f, 1.0f};
459 }
460
461 static constexpr Color ForestGreen() {
462 return {34.0f / 255.0f, 139.0f / 255.0f, 34.0f / 255.0f, 1.0f};
463 }
464
465 static constexpr Color Fuchsia() {
466 return {255.0f / 255.0f, 0.0f / 255.0f, 255.0f / 255.0f, 1.0f};
467 }
468
469 static constexpr Color Gainsboro() {
470 return {220.0f / 255.0f, 220.0f / 255.0f, 220.0f / 255.0f, 1.0f};
471 }
472
473 static constexpr Color Ghostwhite() {
474 return {248.0f / 255.0f, 248.0f / 255.0f, 255.0f / 255.0f, 1.0f};
475 }
476
477 static constexpr Color Gold() {
478 return {255.0f / 255.0f, 215.0f / 255.0f, 0.0f / 255.0f, 1.0f};
479 }
480
481 static constexpr Color Goldenrod() {
482 return {218.0f / 255.0f, 165.0f / 255.0f, 32.0f / 255.0f, 1.0f};
483 }
484
485 static constexpr Color Gray() {
486 return {128.0f / 255.0f, 128.0f / 255.0f, 128.0f / 255.0f, 1.0f};
487 }
488
489 static constexpr Color GreenYellow() {
490 return {173.0f / 255.0f, 255.0f / 255.0f, 47.0f / 255.0f, 1.0f};
491 }
492
493 static constexpr Color Grey() {
494 return {128.0f / 255.0f, 128.0f / 255.0f, 128.0f / 255.0f, 1.0f};
495 }
496
497 static constexpr Color Honeydew() {
498 return {240.0f / 255.0f, 255.0f / 255.0f, 240.0f / 255.0f, 1.0f};
499 }
500
501 static constexpr Color HotPink() {
502 return {255.0f / 255.0f, 105.0f / 255.0f, 180.0f / 255.0f, 1.0f};
503 }
504
505 static constexpr Color IndianRed() {
506 return {205.0f / 255.0f, 92.0f / 255.0f, 92.0f / 255.0f, 1.0f};
507 }
508
509 static constexpr Color Indigo() {
510 return {75.0f / 255.0f, 0.0f / 255.0f, 130.0f / 255.0f, 1.0f};
511 }
512
513 static constexpr Color Ivory() {
514 return {255.0f / 255.0f, 255.0f / 255.0f, 240.0f / 255.0f, 1.0f};
515 }
516
517 static constexpr Color Khaki() {
518 return {240.0f / 255.0f, 230.0f / 255.0f, 140.0f / 255.0f, 1.0f};
519 }
520
521 static constexpr Color Lavender() {
522 return {230.0f / 255.0f, 230.0f / 255.0f, 250.0f / 255.0f, 1.0f};
523 }
524
525 static constexpr Color LavenderBlush() {
526 return {255.0f / 255.0f, 240.0f / 255.0f, 245.0f / 255.0f, 1.0f};
527 }
528
529 static constexpr Color LawnGreen() {
530 return {124.0f / 255.0f, 252.0f / 255.0f, 0.0f / 255.0f, 1.0f};
531 }
532
533 static constexpr Color LemonChiffon() {
534 return {255.0f / 255.0f, 250.0f / 255.0f, 205.0f / 255.0f, 1.0f};
535 }
536
537 static constexpr Color LightBlue() {
538 return {173.0f / 255.0f, 216.0f / 255.0f, 230.0f / 255.0f, 1.0f};
539 }
540
541 static constexpr Color LightCoral() {
542 return {240.0f / 255.0f, 128.0f / 255.0f, 128.0f / 255.0f, 1.0f};
543 }
544
545 static constexpr Color LightCyan() {
546 return {224.0f / 255.0f, 255.0f / 255.0f, 255.0f / 255.0f, 1.0f};
547 }
548
549 static constexpr Color LightGoldenrodYellow() {
550 return {50.0f / 255.0f, 250.0f / 255.0f, 210.0f / 255.0f, 1.0f};
551 }
552
553 static constexpr Color LightGray() {
554 return {211.0f / 255.0f, 211.0f / 255.0f, 211.0f / 255.0f, 1.0f};
555 }
556
557 static constexpr Color LightGreen() {
558 return {144.0f / 255.0f, 238.0f / 255.0f, 144.0f / 255.0f, 1.0f};
559 }
560
561 static constexpr Color LightGrey() {
562 return {211.0f / 255.0f, 211.0f / 255.0f, 211.0f / 255.0f, 1.0f};
563 }
564
565 static constexpr Color LightPink() {
566 return {255.0f / 255.0f, 182.0f / 255.0f, 193.0f / 255.0f, 1.0f};
567 }
568
569 static constexpr Color LightSalmon() {
570 return {255.0f / 255.0f, 160.0f / 255.0f, 122.0f / 255.0f, 1.0f};
571 }
572
573 static constexpr Color LightSeaGreen() {
574 return {32.0f / 255.0f, 178.0f / 255.0f, 170.0f / 255.0f, 1.0f};
575 }
576
577 static constexpr Color LightSkyBlue() {
578 return {135.0f / 255.0f, 206.0f / 255.0f, 250.0f / 255.0f, 1.0f};
579 }
580
581 static constexpr Color LightSlateGray() {
582 return {119.0f / 255.0f, 136.0f / 255.0f, 153.0f / 255.0f, 1.0f};
583 }
584
585 static constexpr Color LightSlateGrey() {
586 return {119.0f / 255.0f, 136.0f / 255.0f, 153.0f / 255.0f, 1.0f};
587 }
588
589 static constexpr Color LightSteelBlue() {
590 return {176.0f / 255.0f, 196.0f / 255.0f, 222.0f / 255.0f, 1.0f};
591 }
592
593 static constexpr Color LightYellow() {
594 return {255.0f / 255.0f, 255.0f / 255.0f, 224.0f / 255.0f, 1.0f};
595 }
596
597 static constexpr Color Lime() {
598 return {0.0f / 255.0f, 255.0f / 255.0f, 0.0f / 255.0f, 1.0f};
599 }
600
601 static constexpr Color LimeGreen() {
602 return {50.0f / 255.0f, 205.0f / 255.0f, 50.0f / 255.0f, 1.0f};
603 }
604
605 static constexpr Color Linen() {
606 return {250.0f / 255.0f, 240.0f / 255.0f, 230.0f / 255.0f, 1.0f};
607 }
608
609 static constexpr Color Magenta() {
610 return {255.0f / 255.0f, 0.0f / 255.0f, 255.0f / 255.0f, 1.0f};
611 }
612
613 static constexpr Color Maroon() {
614 return {128.0f / 255.0f, 0.0f / 255.0f, 0.0f / 255.0f, 1.0f};
615 }
616
617 static constexpr Color MediumAquamarine() {
618 return {102.0f / 255.0f, 205.0f / 255.0f, 170.0f / 255.0f, 1.0f};
619 }
620
621 static constexpr Color MediumBlue() {
622 return {0.0f / 255.0f, 0.0f / 255.0f, 205.0f / 255.0f, 1.0f};
623 }
624
625 static constexpr Color MediumOrchid() {
626 return {186.0f / 255.0f, 85.0f / 255.0f, 211.0f / 255.0f, 1.0f};
627 }
628
629 static constexpr Color MediumPurple() {
630 return {147.0f / 255.0f, 112.0f / 255.0f, 219.0f / 255.0f, 1.0f};
631 }
632
633 static constexpr Color MediumSeagreen() {
634 return {60.0f / 255.0f, 179.0f / 255.0f, 113.0f / 255.0f, 1.0f};
635 }
636
637 static constexpr Color MediumSlateBlue() {
638 return {123.0f / 255.0f, 104.0f / 255.0f, 238.0f / 255.0f, 1.0f};
639 }
640
641 static constexpr Color MediumSpringGreen() {
642 return {0.0f / 255.0f, 250.0f / 255.0f, 154.0f / 255.0f, 1.0f};
643 }
644
645 static constexpr Color MediumTurquoise() {
646 return {72.0f / 255.0f, 209.0f / 255.0f, 204.0f / 255.0f, 1.0f};
647 }
648
649 static constexpr Color MediumVioletRed() {
650 return {199.0f / 255.0f, 21.0f / 255.0f, 133.0f / 255.0f, 1.0f};
651 }
652
653 static constexpr Color MidnightBlue() {
654 return {25.0f / 255.0f, 25.0f / 255.0f, 112.0f / 255.0f, 1.0f};
655 }
656
657 static constexpr Color MintCream() {
658 return {245.0f / 255.0f, 255.0f / 255.0f, 250.0f / 255.0f, 1.0f};
659 }
660
661 static constexpr Color MistyRose() {
662 return {255.0f / 255.0f, 228.0f / 255.0f, 225.0f / 255.0f, 1.0f};
663 }
664
665 static constexpr Color Moccasin() {
666 return {255.0f / 255.0f, 228.0f / 255.0f, 181.0f / 255.0f, 1.0f};
667 }
668
669 static constexpr Color NavajoWhite() {
670 return {255.0f / 255.0f, 222.0f / 255.0f, 173.0f / 255.0f, 1.0f};
671 }
672
673 static constexpr Color Navy() {
674 return {0.0f / 255.0f, 0.0f / 255.0f, 128.0f / 255.0f, 1.0f};
675 }
676
677 static constexpr Color OldLace() {
678 return {253.0f / 255.0f, 245.0f / 255.0f, 230.0f / 255.0f, 1.0f};
679 }
680
681 static constexpr Color Olive() {
682 return {128.0f / 255.0f, 128.0f / 255.0f, 0.0f / 255.0f, 1.0f};
683 }
684
685 static constexpr Color OliveDrab() {
686 return {107.0f / 255.0f, 142.0f / 255.0f, 35.0f / 255.0f, 1.0f};
687 }
688
689 static constexpr Color Orange() {
690 return {255.0f / 255.0f, 165.0f / 255.0f, 0.0f / 255.0f, 1.0f};
691 }
692
693 static constexpr Color OrangeRed() {
694 return {255.0f / 255.0f, 69.0f / 255.0f, 0.0f / 255.0f, 1.0f};
695 }
696
697 static constexpr Color Orchid() {
698 return {218.0f / 255.0f, 112.0f / 255.0f, 214.0f / 255.0f, 1.0f};
699 }
700
701 static constexpr Color PaleGoldenrod() {
702 return {238.0f / 255.0f, 232.0f / 255.0f, 170.0f / 255.0f, 1.0f};
703 }
704
705 static constexpr Color PaleGreen() {
706 return {152.0f / 255.0f, 251.0f / 255.0f, 152.0f / 255.0f, 1.0f};
707 }
708
709 static constexpr Color PaleTurquoise() {
710 return {175.0f / 255.0f, 238.0f / 255.0f, 238.0f / 255.0f, 1.0f};
711 }
712
713 static constexpr Color PaleVioletRed() {
714 return {219.0f / 255.0f, 112.0f / 255.0f, 147.0f / 255.0f, 1.0f};
715 }
716
717 static constexpr Color PapayaWhip() {
718 return {255.0f / 255.0f, 239.0f / 255.0f, 213.0f / 255.0f, 1.0f};
719 }
720
721 static constexpr Color Peachpuff() {
722 return {255.0f / 255.0f, 218.0f / 255.0f, 185.0f / 255.0f, 1.0f};
723 }
724
725 static constexpr Color Peru() {
726 return {205.0f / 255.0f, 133.0f / 255.0f, 63.0f / 255.0f, 1.0f};
727 }
728
729 static constexpr Color Pink() {
730 return {255.0f / 255.0f, 192.0f / 255.0f, 203.0f / 255.0f, 1.0f};
731 }
732
733 static constexpr Color Plum() {
734 return {221.0f / 255.0f, 160.0f / 255.0f, 221.0f / 255.0f, 1.0f};
735 }
736
737 static constexpr Color PowderBlue() {
738 return {176.0f / 255.0f, 224.0f / 255.0f, 230.0f / 255.0f, 1.0f};
739 }
740
741 static constexpr Color Purple() {
742 return {128.0f / 255.0f, 0.0f / 255.0f, 128.0f / 255.0f, 1.0f};
743 }
744
745 static constexpr Color RosyBrown() {
746 return {188.0f / 255.0f, 143.0f / 255.0f, 143.0f / 255.0f, 1.0f};
747 }
748
749 static constexpr Color RoyalBlue() {
750 return {65.0f / 255.0f, 105.0f / 255.0f, 225.0f / 255.0f, 1.0f};
751 }
752
753 static constexpr Color SaddleBrown() {
754 return {139.0f / 255.0f, 69.0f / 255.0f, 19.0f / 255.0f, 1.0f};
755 }
756
757 static constexpr Color Salmon() {
758 return {250.0f / 255.0f, 128.0f / 255.0f, 114.0f / 255.0f, 1.0f};
759 }
760
761 static constexpr Color SandyBrown() {
762 return {244.0f / 255.0f, 164.0f / 255.0f, 96.0f / 255.0f, 1.0f};
763 }
764
765 static constexpr Color Seagreen() {
766 return {46.0f / 255.0f, 139.0f / 255.0f, 87.0f / 255.0f, 1.0f};
767 }
768
769 static constexpr Color Seashell() {
770 return {255.0f / 255.0f, 245.0f / 255.0f, 238.0f / 255.0f, 1.0f};
771 }
772
773 static constexpr Color Sienna() {
774 return {160.0f / 255.0f, 82.0f / 255.0f, 45.0f / 255.0f, 1.0f};
775 }
776
777 static constexpr Color Silver() {
778 return {192.0f / 255.0f, 192.0f / 255.0f, 192.0f / 255.0f, 1.0f};
779 }
780
781 static constexpr Color SkyBlue() {
782 return {135.0f / 255.0f, 206.0f / 255.0f, 235.0f / 255.0f, 1.0f};
783 }
784
785 static constexpr Color SlateBlue() {
786 return {106.0f / 255.0f, 90.0f / 255.0f, 205.0f / 255.0f, 1.0f};
787 }
788
789 static constexpr Color SlateGray() {
790 return {112.0f / 255.0f, 128.0f / 255.0f, 144.0f / 255.0f, 1.0f};
791 }
792
793 static constexpr Color SlateGrey() {
794 return {112.0f / 255.0f, 128.0f / 255.0f, 144.0f / 255.0f, 1.0f};
795 }
796
797 static constexpr Color Snow() {
798 return {255.0f / 255.0f, 250.0f / 255.0f, 250.0f / 255.0f, 1.0f};
799 }
800
801 static constexpr Color SpringGreen() {
802 return {0.0f / 255.0f, 255.0f / 255.0f, 127.0f / 255.0f, 1.0f};
803 }
804
805 static constexpr Color SteelBlue() {
806 return {70.0f / 255.0f, 130.0f / 255.0f, 180.0f / 255.0f, 1.0f};
807 }
808
809 static constexpr Color Tan() {
810 return {210.0f / 255.0f, 180.0f / 255.0f, 140.0f / 255.0f, 1.0f};
811 }
812
813 static constexpr Color Teal() {
814 return {0.0f / 255.0f, 128.0f / 255.0f, 128.0f / 255.0f, 1.0f};
815 }
816
817 static constexpr Color Thistle() {
818 return {216.0f / 255.0f, 191.0f / 255.0f, 216.0f / 255.0f, 1.0f};
819 }
820
821 static constexpr Color Tomato() {
822 return {255.0f / 255.0f, 99.0f / 255.0f, 71.0f / 255.0f, 1.0f};
823 }
824
825 static constexpr Color Turquoise() {
826 return {64.0f / 255.0f, 224.0f / 255.0f, 208.0f / 255.0f, 1.0f};
827 }
828
829 static constexpr Color Violet() {
830 return {238.0f / 255.0f, 130.0f / 255.0f, 238.0f / 255.0f, 1.0f};
831 }
832
833 static constexpr Color Wheat() {
834 return {245.0f / 255.0f, 222.0f / 255.0f, 179.0f / 255.0f, 1.0f};
835 }
836
837 static constexpr Color Whitesmoke() {
838 return {245.0f / 255.0f, 245.0f / 255.0f, 245.0f / 255.0f, 1.0f};
839 }
840
841 static constexpr Color Yellow() {
842 return {255.0f / 255.0f, 255.0f / 255.0f, 0.0f / 255.0f, 1.0f};
843 }
844
845 static constexpr Color YellowGreen() {
846 return {154.0f / 255.0f, 205.0f / 255.0f, 50.0f / 255.0f, 1.0f};
847 }
848
849 static Color Random() {
850 return {
851
852
853 static_cast<Scalar>((std::rand() % 255) / 255.0f),
854 static_cast<Scalar>((std::rand() % 255) / 255.0f),
855 static_cast<Scalar>((std::rand() % 255) / 255.0f),
856
857 1.0f
858
859 };
860 }
861
862
863
864
865
866
867 Color Blend(Color source, BlendMode blend_mode) const;
868
869
870
871
872
873
874
875
876
877 Color ApplyColorMatrix(const ColorMatrix& color_matrix) const;
878
879
880
881
882
883 Color LinearToSRGB() const;
884
885
886
887
888
889 Color SRGBToLinear() const;
890
891 constexpr bool IsTransparent() const { return alpha == 0.0f; }
892
893 constexpr bool IsOpaque() const { return alpha == 1.0f; }
894};
895
896template <class T, class = std::enable_if_t<std::is_arithmetic_v<T>>>
897constexpr inline Color
operator+(T value,
const Color& c) {
899}
900
901template <class T, class = std::enable_if_t<std::is_arithmetic_v<T>>>
902constexpr inline Color
operator-(T value,
const Color& c) {
904 return {v - c.red, v - c.green, v - c.blue, v - c.alpha};
905}
906
907template <class T, class = std::enable_if_t<std::is_arithmetic_v<T>>>
908constexpr inline Color
operator*(T value,
const Color& c) {
910}
911
912template <class T, class = std::enable_if_t<std::is_arithmetic_v<T>>>
913constexpr inline Color
operator/(T value,
const Color& c) {
915 return {v / c.red, v / c.green, v / c.blue, v / c.alpha};
916}
917
919
920static_assert(sizeof(Color) == 4 * sizeof(Scalar));
921
922}
923
925
928 << ")";
929 return out;
930}
931
932inline std::ostream&
operator<<(std::ostream& out,
935 return out;
936}
937
938}
939
940#endif
bool operator==(const FlutterPoint &a, const FlutterPoint &b)
constexpr Color operator-(T value, const Color &c)
constexpr Color operator/(T value, const Color &c)
constexpr Color operator+(T value, const Color &c)
const char * BlendModeToString(BlendMode blend_mode)
constexpr Color operator*(T value, const Color &c)
std::string ColorToString(const Color &color)
constexpr bool ScalarNearlyEqual(Scalar x, Scalar y, Scalar tolerance=kEhCloseEnough)
std::ostream & operator<<(std::ostream &out, const impeller::Arc &a)