color.h
1 /*
2 ** UICore
3 ** Copyright (c) 1997-2015 The UICore Team
4 **
5 ** This software is provided 'as-is', without any express or implied
6 ** warranty. In no event will the authors be held liable for any damages
7 ** arising from the use of this software.
8 **
9 ** Permission is granted to anyone to use this software for any purpose,
10 ** including commercial applications, and to alter it and redistribute it
11 ** freely, subject to the following restrictions:
12 **
13 ** 1. The origin of this software must not be misrepresented; you must not
14 ** claim that you wrote the original software. If you use this software
15 ** in a product, an acknowledgment in the product documentation would be
16 ** appreciated but is not required.
17 ** 2. Altered source versions must be plainly marked as such, and must not be
18 ** misrepresented as being the original software.
19 ** 3. This notice may not be removed or altered from any source distribution.
20 **
21 ** Note: Some of the libraries UICore may link to may have additional
22 ** requirements or restrictions.
23 **
24 ** File Author(s):
25 **
26 ** Magnus Norddahl
27 ** Harry Storbacka
28 ** Mark Page
29 */
30 
31 #pragma once
32 
33 #include "../../Core/Math/vec4.h"
34 #include <vector>
35 
36 namespace uicore
37 {
38  class PixelFormat;
39  class Colorf;
40 
42  class Color : public Vec4ub
43  {
44  public:
46  Color() {}
47 
48  explicit Color(const Colorf&);
49 
59  Color(unsigned char red, unsigned char green, unsigned char blue, unsigned char alpha = 255)
60  : Vec4ub(red, green, blue, alpha) { return; }
61 
68  Color(const std::string &hexstr);
69 
71  unsigned char get_alpha() const { return w; }
72 
74  unsigned char get_red() const { return x; }
75 
77  unsigned char get_green() const { return y; }
78 
80  unsigned char get_blue() const { return z; }
81 
83  float get_alpha_f() const { return float(w) / 255.0f; }
84 
86  float get_red_f() const { return float(x) / 255.0f; }
87 
89  float get_green_f() const { return float(y) / 255.0f; }
90 
92  float get_blue_f() const { return float(z) / 255.0f; }
93 
95  unsigned int get_argb8() const { return (((unsigned int)w) << 24) | (((unsigned int)x) << 16) | (((unsigned int)y) << 8) | (unsigned int)z; }
96 
98  unsigned int get_abgr8() const { return (((unsigned int)w) << 24) | (((unsigned int)z) << 16) | (((unsigned int)y) << 8) | (unsigned int)x; }
99 
101  unsigned int get_rgba8() const { return (((unsigned int)x) << 24) | (((unsigned int)y) << 16) | (((unsigned int)z) << 8) | (unsigned int)w; }
102 
104  unsigned int get_bgra8() const { return (((unsigned int)z) << 24) | (((unsigned int)y) << 16) | (((unsigned int)x) << 8) | (unsigned int)w; }
105 
106  // Operations:
107  public:
109  bool operator==(const Color &c) const
110  {
111  return (x == c.x) && (y == c.y) && (z == c.z) && (w == c.w);
112  }
113 
115  bool operator!=(const Color &c) const
116  {
117  return (x != c.x) || (y != c.y) || (z != c.z) || (w != c.w);
118  }
119 
121  static Color aliceblue;
122 
125 
127  static Color aqua;
128 
131 
133  static Color azure;
134 
136  static Color beige;
137 
139  static Color bisque;
140 
142  static Color black;
143 
146 
148  static Color blue;
149 
152 
154  static Color brown;
155 
157  static Color burlywood;
158 
160  static Color cadetblue;
161 
164 
166  static Color chocolate;
167 
169  static Color coral;
170 
173 
175  static Color cornsilk;
176 
178  static Color crimson;
179 
181  static Color cyan;
182 
184  static Color darkblue;
185 
187  static Color darkcyan;
188 
191 
193  static Color darkgray;
194 
196  static Color darkgreen;
197 
199  static Color darkgrey;
200 
202  static Color darkkhaki;
203 
206 
209 
212 
215 
217  static Color darkred;
218 
221 
224 
227 
230 
233 
236 
239 
241  static Color deeppink;
242 
245 
247  static Color dimgray;
248 
250  static Color dimgrey;
251 
254 
256  static Color firebrick;
257 
260 
263 
265  static Color fuchsia;
266 
268  static Color gainsboro;
269 
272 
274  static Color gold;
275 
277  static Color goldenrod;
278 
280  static Color gray;
281 
283  static Color grey;
284 
286  static Color green;
287 
290 
292  static Color honeydew;
293 
295  static Color hotpink;
296 
298  static Color indianred;
299 
301  static Color indigo;
302 
304  static Color ivory;
305 
307  static Color khaki;
308 
310  static Color lavender;
311 
314 
316  static Color lawngreen;
317 
320 
322  static Color lightblue;
323 
326 
328  static Color lightcyan;
329 
332 
334  static Color lightgray;
335 
338 
340  static Color lightgrey;
341 
343  static Color lightpink;
344 
347 
350 
353 
356 
359 
362 
365 
367  static Color lime;
368 
370  static Color limegreen;
371 
373  static Color linen;
374 
376  static Color magenta;
377 
379  static Color maroon;
380 
383 
386 
389 
392 
395 
398 
401 
404 
407 
410 
412  static Color mintcream;
413 
415  static Color mistyrose;
416 
418  static Color moccasin;
419 
422 
424  static Color navy;
425 
427  static Color oldlace;
428 
430  static Color olive;
431 
433  static Color olivedrab;
434 
436  static Color orange;
437 
439  static Color orangered;
440 
442  static Color orchid;
443 
446 
448  static Color palegreen;
449 
452 
455 
458 
460  static Color peachpuff;
461 
463  static Color peru;
464 
466  static Color pink;
467 
469  static Color plum;
470 
473 
475  static Color purple;
476 
478  static Color red;
479 
481  static Color rosybrown;
482 
484  static Color royalblue;
485 
488 
490  static Color salmon;
491 
494 
496  static Color seagreen;
497 
499  static Color seashell;
500 
502  static Color sienna;
503 
505  static Color silver;
506 
508  static Color skyblue;
509 
511  static Color slateblue;
512 
514  static Color slategray;
515 
517  static Color slategrey;
518 
520  static Color snow;
521 
524 
526  static Color steelblue;
527 
529  static Color tan;
530 
532  static Color teal;
533 
535  static Color thistle;
536 
538  static Color tomato;
539 
541  static Color turquoise;
542 
544  static Color violet;
545 
547  static Color wheat;
548 
550  static Color white;
551 
554 
556  static Color yellow;
557 
560 
563 
564  static Color gray10;
565  static Color gray20;
566  static Color gray30;
567  static Color gray40;
568  static Color gray50;
569  static Color gray60;
570  static Color gray70;
571  static Color gray80;
572  static Color gray90;
573 
575  void set_alpha(unsigned char value) { w = value; }
576 
578  void set_red(unsigned char value) { x = value; }
579 
581  void set_green(unsigned char value) { y = value; }
582 
584  void set_blue(unsigned char value) { z = value; }
585 
587  void set_alpha_f(float value) { w = (unsigned char) (value*255.0f); }
588 
590  void set_red_f(float value) { x = (unsigned char) (value*255.0f); }
591 
593  void set_green_f(float value) { y = (unsigned char) (value*255.0f); }
594 
596  void set_blue_f(float value) { z = (unsigned char) (value*255.0f); }
597 
599  void set_color(unsigned char new_red, unsigned char new_green, unsigned char new_blue, unsigned char new_alpha = 255)
600  {
601  x = new_red;
602  y = new_green;
603  z = new_blue;
604  w = new_alpha;
605  }
606 
608  void set_rgba8(unsigned int color);
609 
611  void set_bgra8(unsigned int color);
612 
614  void set_rgb8(unsigned int color);
615 
617  void set_argb8(unsigned int color);
618 
620  void set_colorf(float new_red, float new_green, float new_blue, float new_alpha = 1.0f)
621  {
622  x = (unsigned char) (new_red * 255.0f);
623  y = (unsigned char) (new_green * 255.0f);
624  z = (unsigned char) (new_blue * 255.0f);
625  w = (unsigned char) (new_alpha * 255.0f);
626  }
627  };
628 
630  class Colorf : public Vec4f
631  {
632  public:
634  Colorf() : Vec4f(0.0f, 0.0f, 0.0f, 0.0f)
635  {
636  }
637 
647  Colorf(float r, float g, float b, float a = 1.0f) : Vec4f(r,g,b,a)
648  {
649  }
650 
657  Colorf(const float *array_rgba)
658  : Vec4f((array_rgba[0]), (array_rgba[1]), (array_rgba[2]), (array_rgba[3]))
659  {
660  }
661 
665  Colorf(const Vec4f &color) : Vec4f(color)
666  {
667  }
668 
678  Colorf(unsigned char r, unsigned char g, unsigned char b, unsigned char a=255)
679  : Vec4f((r/255.0f), (g/255.0f), (b/255.0f), (a/255.0f))
680  {
681  }
682 
692  Colorf(int r, int g, int b, int a=255)
693  : Vec4f((r/255.0f), (g/255.0f), (b/255.0f), (a/255.0f))
694  {
695  }
696 
697  explicit Colorf(const Color& color)
698  : Vec4f((color.get_red()/255.0f), (color.get_green()/255.0f), (color.get_blue()/255.0f), (color.get_alpha()/255.0f))
699  {
700  }
701 
705  Colorf(const std::string &hexstr)
706  {
707  Colorf::find_color(hexstr, *this);
708  }
709 
713  float get_red() const { return x; }
714 
718  float get_green() const { return y; }
719 
723  float get_blue() const { return z; }
724 
728  float get_alpha() const { return w; }
729 
731  void normalize()
732  {
733  x = (x < 0.0f) ? 0.0f : ((x > 1.0f) ? 1.0f : x);
734  y = (y < 0.0f) ? 0.0f : ((y > 1.0f) ? 1.0f : y);
735  z = (z < 0.0f) ? 0.0f : ((z > 1.0f) ? 1.0f : z);
736  w = (w < 0.0f) ? 0.0f : ((w > 1.0f) ? 1.0f : w);
737  }
738 
740  void set_alpha(float value) { w = value; }
741 
743  void set_red(float value) { x = value; }
744 
746  void set_green(float value) { y = value; }
747 
749  void set_blue(float value) { z = value; }
750 
752  bool operator==(const Colorf &c) const
753  {
754  return (x == c.x) && (y == c.y) && (z == c.z) && (w == c.w);
755  }
756 
758  bool operator!=(const Colorf &c) const
759  {
760  return (x != c.x) || (y != c.y) || (z != c.z) || (w != c.w);
761  }
762 
764  operator Color() const
765  {
766  return Color(*this);
767  }
768 
775  static bool find_color(const std::string &name, Colorf &out_color);
776 
779 
782 
784  static Colorf aqua;
785 
788 
790  static Colorf azure;
791 
793  static Colorf beige;
794 
796  static Colorf bisque;
797 
799  static Colorf black;
800 
803 
805  static Colorf blue;
806 
809 
811  static Colorf brown;
812 
815 
818 
821 
824 
826  static Colorf coral;
827 
830 
832  static Colorf cornsilk;
833 
835  static Colorf crimson;
836 
838  static Colorf cyan;
839 
841  static Colorf darkblue;
842 
844  static Colorf darkcyan;
845 
848 
850  static Colorf darkgray;
851 
854 
856  static Colorf darkgrey;
857 
860 
863 
866 
869 
872 
874  static Colorf darkred;
875 
878 
881 
884 
887 
890 
893 
896 
898  static Colorf deeppink;
899 
902 
904  static Colorf dimgray;
905 
907  static Colorf dimgrey;
908 
911 
914 
917 
920 
922  static Colorf fuchsia;
923 
926 
929 
931  static Colorf gold;
932 
935 
937  static Colorf gray;
938 
940  static Colorf grey;
941 
943  static Colorf green;
944 
947 
949  static Colorf honeydew;
950 
952  static Colorf hotpink;
953 
956 
958  static Colorf indigo;
959 
961  static Colorf ivory;
962 
964  static Colorf khaki;
965 
967  static Colorf lavender;
968 
971 
974 
977 
980 
983 
986 
989 
992 
995 
998 
1001 
1004 
1007 
1010 
1013 
1016 
1019 
1022 
1024  static Colorf lime;
1025 
1028 
1030  static Colorf linen;
1031 
1033  static Colorf magenta;
1034 
1036  static Colorf maroon;
1037 
1040 
1043 
1046 
1049 
1052 
1055 
1058 
1061 
1064 
1067 
1070 
1073 
1076 
1079 
1081  static Colorf navy;
1082 
1084  static Colorf oldlace;
1085 
1087  static Colorf olive;
1088 
1091 
1093  static Colorf orange;
1094 
1097 
1099  static Colorf orchid;
1100 
1103 
1106 
1109 
1112 
1115 
1118 
1120  static Colorf peru;
1121 
1123  static Colorf pink;
1124 
1126  static Colorf plum;
1127 
1130 
1132  static Colorf purple;
1133 
1135  static Colorf red;
1136 
1139 
1142 
1145 
1147  static Colorf salmon;
1148 
1151 
1154 
1157 
1159  static Colorf sienna;
1160 
1162  static Colorf silver;
1163 
1165  static Colorf skyblue;
1166 
1169 
1172 
1175 
1177  static Colorf snow;
1178 
1181 
1184 
1186  static Colorf tan;
1187 
1189  static Colorf teal;
1190 
1192  static Colorf thistle;
1193 
1195  static Colorf tomato;
1196 
1199 
1201  static Colorf violet;
1202 
1204  static Colorf wheat;
1205 
1207  static Colorf white;
1208 
1211 
1213  static Colorf yellow;
1214 
1217 
1220 
1221  static Colorf gray10;
1222  static Colorf gray20;
1223  static Colorf gray30;
1224  static Colorf gray40;
1225  static Colorf gray50;
1226  static Colorf gray60;
1227  static Colorf gray70;
1228  static Colorf gray80;
1229  static Colorf gray90;
1230  };
1231 }
static Color snow
Definition: color.h:520
static Color lightsalmon
Definition: color.h:346
unsigned int get_bgra8() const
Returns the color in BGRA8888 format.
Definition: color.h:104
static Colorf deeppink
Definition: color.h:898
static Colorf silver
Definition: color.h:1162
static Color crimson
Definition: color.h:178
static Colorf plum
Definition: color.h:1126
static Color green
Definition: color.h:286
bool operator!=(const Color &c) const
Color != Color operator (deep compare)
Definition: color.h:115
static Color lightpink
Definition: color.h:343
static Color darkgoldenrod
Definition: color.h:190
static Colorf darkgoldenrod
Definition: color.h:847
void set_green(float value)
Set green color component, in the range 0-1.
Definition: color.h:746
static Color ghostwhite
Definition: color.h:271
static Color gray60
Definition: color.h:569
static Colorf gray50
Definition: color.h:1225
static Colorf lightslategrey
Definition: color.h:1015
static Colorf darkolivegreen
Definition: color.h:865
static Color darkseagreen
Definition: color.h:223
Colorf(const std::string &hexstr)
Constructs a color.
Definition: color.h:705
static Colorf moccasin
Definition: color.h:1075
static Color yellow
Definition: color.h:556
static Color lightskyblue
Definition: color.h:352
static Colorf orchid
Definition: color.h:1099
void set_alpha_f(float value)
Set alpha color component, in the range 0-1.
Definition: color.h:587
static Color antiquewhite
Definition: color.h:124
static Colorf blueviolet
Definition: color.h:808
static Color khaki
Definition: color.h:307
static Colorf mediumblue
Definition: color.h:1042
static Colorf gray40
Definition: color.h:1224
static Colorf lightcoral
Definition: color.h:982
static Color darkgray
Definition: color.h:193
static bool find_color(const std::string &name, Colorf &out_color)
Find and returns the static color matching a string.
static Color gray90
Definition: color.h:572
static Colorf darkturquoise
Definition: color.h:892
static Colorf darkslategray
Definition: color.h:886
static Color firebrick
Definition: color.h:256
static Color mediumblue
Definition: color.h:385
static Color lavender
Definition: color.h:310
static Colorf deepskyblue
Definition: color.h:901
static Colorf lightgray
Definition: color.h:991
static Colorf white
Definition: color.h:1207
static Color lightgrey
Definition: color.h:340
static Colorf linen
Definition: color.h:1030
unsigned char get_green() const
Returns the green color component, in the range 0-255.
Definition: color.h:77
static Color gray70
Definition: color.h:570
static Colorf olive
Definition: color.h:1087
static Colorf goldenrod
Definition: color.h:934
unsigned int get_rgba8() const
Returns the color in RGBA8888 format.
Definition: color.h:101
static Colorf lightblue
Definition: color.h:979
static Colorf navy
Definition: color.h:1081
static Colorf khaki
Definition: color.h:964
static Colorf gray70
Definition: color.h:1227
float get_red_f() const
Returns the red color component, in the range 0-1.
Definition: color.h:86
static Colorf gray60
Definition: color.h:1226
static Colorf palegoldenrod
Definition: color.h:1102
static Color cornsilk
Definition: color.h:175
static Color skyblue
Definition: color.h:508
static Colorf green
Definition: color.h:943
static Color darkslategrey
Definition: color.h:232
static Color cyan
Definition: color.h:181
static Colorf darkmagenta
Definition: color.h:862
static Colorf orange
Definition: color.h:1093
static Colorf darkgreen
Definition: color.h:853
static Color indigo
Definition: color.h:301
static Colorf blue
Definition: color.h:805
static Color blue
Definition: color.h:148
static Colorf sienna
Definition: color.h:1159
static Colorf seagreen
Definition: color.h:1153
static Color royalblue
Definition: color.h:484
static Color blanchedalmond
Definition: color.h:145
static Colorf mediumseagreen
Definition: color.h:1051
static Color honeydew
Definition: color.h:292
Type x
Definition: vec4.h:74
static Color white
Definition: color.h:550
static Colorf floralwhite
Definition: color.h:916
Colorf(const Color &color)
Definition: color.h:697
static Color hotpink
Definition: color.h:295
static Colorf mediumpurple
Definition: color.h:1048
static Color burlywood
Definition: color.h:157
static Color black
Definition: color.h:142
static Colorf yellowgreen
Definition: color.h:1216
static Colorf aqua
Definition: color.h:784
Floating point color description class (for float).
Definition: color.h:630
static Color azure
Definition: color.h:133
static Color palevioletred
Definition: color.h:454
static Color moccasin
Definition: color.h:418
static Color floralwhite
Definition: color.h:259
static Colorf red
Definition: color.h:1135
static Color yellowgreen
Definition: color.h:559
static Colorf orangered
Definition: color.h:1096
static Colorf rosybrown
Definition: color.h:1138
static Colorf violet
Definition: color.h:1201
static Color lightgreen
Definition: color.h:337
static Colorf limegreen
Definition: color.h:1027
static Color palegoldenrod
Definition: color.h:445
static Color cornflowerblue
Definition: color.h:172
unsigned char get_red() const
Returns the red color component, in the range 0-255.
Definition: color.h:74
void set_color(unsigned char new_red, unsigned char new_green, unsigned char new_blue, unsigned char new_alpha=255)
Set color based on rgba color components in the range 0-255.
Definition: color.h:599
static Colorf ghostwhite
Definition: color.h:928
static Color darkgreen
Definition: color.h:196
Color description class.
Definition: color.h:42
static Color olive
Definition: color.h:430
static Color teal
Definition: color.h:532
static Color chocolate
Definition: color.h:166
static Colorf wheat
Definition: color.h:1204
Color(unsigned char red, unsigned char green, unsigned char blue, unsigned char alpha=255)
Constructs a color.
Definition: color.h:59
static Color goldenrod
Definition: color.h:277
static Color ivory
Definition: color.h:304
static Colorf slategrey
Definition: color.h:1174
static Color cadetblue
Definition: color.h:160
static Colorf cyan
Definition: color.h:838
static Color gray50
Definition: color.h:568
static Colorf tan
Definition: color.h:1186
static Colorf navajowhite
Definition: color.h:1078
static Colorf black
Definition: color.h:799
static Color gray
Definition: color.h:280
void set_green_f(float value)
Set green color component, in the range 0-1.
Definition: color.h:593
static Color slateblue
Definition: color.h:511
static Color lightseagreen
Definition: color.h:349
static Color thistle
Definition: color.h:535
static Colorf crimson
Definition: color.h:835
static Color darkviolet
Definition: color.h:238
static Color mediumturquoise
Definition: color.h:403
static Colorf cornflowerblue
Definition: color.h:829
static Color violet
Definition: color.h:544
static Color darkkhaki
Definition: color.h:202
static Colorf papayawhip
Definition: color.h:1114
static Colorf mediumaquamarine
Definition: color.h:1039
static Color mediumvioletred
Definition: color.h:406
static Colorf mediumslateblue
Definition: color.h:1054
static Color salmon
Definition: color.h:490
static Color bisque
Definition: color.h:139
static Color mediumpurple
Definition: color.h:391
static Color peru
Definition: color.h:463
static Color lightcyan
Definition: color.h:328
static Color darkslateblue
Definition: color.h:226
static Colorf darkslategrey
Definition: color.h:889
static Color springgreen
Definition: color.h:523
static Colorf greenyellow
Definition: color.h:946
static Color darkred
Definition: color.h:217
static Color mediumseagreen
Definition: color.h:394
static Colorf beige
Definition: color.h:793
static Colorf darkcyan
Definition: color.h:844
static Colorf chartreuse
Definition: color.h:820
static Colorf darkslateblue
Definition: color.h:883
static Color greenyellow
Definition: color.h:289
static Colorf gold
Definition: color.h:931
static Color darkblue
Definition: color.h:184
static Colorf indigo
Definition: color.h:958
unsigned char get_alpha() const
Returns the alpha color component, in the range 0-255.
Definition: color.h:71
static Color lightblue
Definition: color.h:322
static Color orangered
Definition: color.h:439
void set_blue(float value)
Set blue color component, in the range 0-1.
Definition: color.h:749
static Colorf purple
Definition: color.h:1132
static Colorf cadetblue
Definition: color.h:817
void set_red(unsigned char value)
Set red color component, in the range 0-255.
Definition: color.h:578
static Colorf bisque
Definition: color.h:796
static Color wheat
Definition: color.h:547
void set_red_f(float value)
Set red color component, in the range 0-1.
Definition: color.h:590
void set_red(float value)
Set red color component, in the range 0-1.
Definition: color.h:743
static Colorf lightgrey
Definition: color.h:997
static Colorf dimgrey
Definition: color.h:907
static Colorf midnightblue
Definition: color.h:1066
static Color red
Definition: color.h:478
static Colorf cornsilk
Definition: color.h:832
static Colorf darkorange
Definition: color.h:868
static Colorf darkseagreen
Definition: color.h:880
static Colorf pink
Definition: color.h:1123
static Colorf paleturquoise
Definition: color.h:1108
static Color linen
Definition: color.h:373
static Color darkmagenta
Definition: color.h:205
void set_argb8(unsigned int color)
Set color based on argb color components.
static Color dimgray
Definition: color.h:247
static Colorf dimgray
Definition: color.h:904
static Colorf magenta
Definition: color.h:1033
static Color coral
Definition: color.h:169
static Color olivedrab
Definition: color.h:433
void normalize()
Normalize the color by ensuring that all color values lie inbetween (0.0, 1.0)
Definition: color.h:731
static Color turquoise
Definition: color.h:541
static Colorf olivedrab
Definition: color.h:1090
static Colorf lightslategray
Definition: color.h:1012
unsigned int get_abgr8() const
Returns the color in ABGR8888 format.
Definition: color.h:98
static Color aliceblue
Definition: color.h:121
static Color deeppink
Definition: color.h:241
bool operator==(const Colorf &c) const
Color == Color operator (deep compare)
Definition: color.h:752
static Color gainsboro
Definition: color.h:268
unsigned int get_argb8() const
Returns the color in ARGB8888 format.
Definition: color.h:95
Color()
Constructs a color.
Definition: color.h:46
void set_alpha(unsigned char value)
Set alpha color component, in the range 0-255.
Definition: color.h:575
static Colorf burlywood
Definition: color.h:814
static Color gray30
Definition: color.h:566
static Color beige
Definition: color.h:136
static Color fuchsia
Definition: color.h:265
static Colorf maroon
Definition: color.h:1036
static Color peachpuff
Definition: color.h:460
static Color lavenderblush
Definition: color.h:313
static Colorf gray90
Definition: color.h:1229
void set_blue(unsigned char value)
Set blue color component, in the range 0-255.
Definition: color.h:584
static Color blueviolet
Definition: color.h:151
static Color deepskyblue
Definition: color.h:244
Colorf(int r, int g, int b, int a=255)
Constructs a color.
Definition: color.h:692
static Color plum
Definition: color.h:469
void set_alpha(float value)
Set alpha color component, in the range 0-1.
Definition: color.h:740
static Color indianred
Definition: color.h:298
static Color orange
Definition: color.h:436
static Color whitesmoke
Definition: color.h:553
Colorf(const float *array_rgba)
Constructs a color.
Definition: color.h:657
static Colorf steelblue
Definition: color.h:1183
static Color mediumorchid
Definition: color.h:388
static Colorf blanchedalmond
Definition: color.h:802
float get_green_f() const
Returns the green color component, in the range 0-1.
Definition: color.h:89
static Colorf chocolate
Definition: color.h:823
static Color purple
Definition: color.h:475
static Colorf forestgreen
Definition: color.h:919
static Colorf lightskyblue
Definition: color.h:1009
static Colorf lavenderblush
Definition: color.h:970
static Colorf darkgray
Definition: color.h:850
static Colorf lightgreen
Definition: color.h:994
static Colorf mediumspringgreen
Definition: color.h:1057
Colorf(const Vec4f &color)
Constructs a color.
Definition: color.h:665
static Color oldlace
Definition: color.h:427
static Color magenta
Definition: color.h:376
static Color brown
Definition: color.h:154
static Color darkorange
Definition: color.h:211
static Color gray80
Definition: color.h:571
static Color pink
Definition: color.h:466
static Color sienna
Definition: color.h:502
static Colorf peru
Definition: color.h:1120
Type y
Definition: vec4.h:75
Colorf()
Constructs a color.
Definition: color.h:634
static Color gray10
Definition: color.h:564
static Color tan
Definition: color.h:529
static Colorf powderblue
Definition: color.h:1129
static Colorf peachpuff
Definition: color.h:1117
Type w
Definition: vec4.h:77
void set_rgba8(unsigned int color)
Set color based on rgba color components.
static Color navy
Definition: color.h:424
float get_blue_f() const
Returns the blue color component, in the range 0-1.
Definition: color.h:92
static Color steelblue
Definition: color.h:526
static Color darkgrey
Definition: color.h:199
static Color aquamarine
Definition: color.h:130
void set_green(unsigned char value)
Set green color component, in the range 0-255.
Definition: color.h:581
static Color darkcyan
Definition: color.h:187
static Color rosybrown
Definition: color.h:481
static Colorf lightgoldenrodyellow
Definition: color.h:988
static Color lightcoral
Definition: color.h:325
Colorf(unsigned char r, unsigned char g, unsigned char b, unsigned char a=255)
Constructs a color.
Definition: color.h:678
static Colorf fuchsia
Definition: color.h:922
static Color seagreen
Definition: color.h:496
static Colorf darkorchid
Definition: color.h:871
void set_blue_f(float value)
Set blue color component, in the range 0-1.
Definition: color.h:596
static Colorf firebrick
Definition: color.h:913
static Colorf lightseagreen
Definition: color.h:1006
static Colorf aliceblue
Definition: color.h:778
static Color darkolivegreen
Definition: color.h:208
static Color navajowhite
Definition: color.h:421
static Colorf slategray
Definition: color.h:1171
static Colorf teal
Definition: color.h:1189
static Colorf lightsalmon
Definition: color.h:1003
static Colorf snow
Definition: color.h:1177
static Colorf lawngreen
Definition: color.h:973
bool operator!=(const Colorf &c) const
Color != Color operator (deep compare)
Definition: color.h:758
static Color dodgerblue
Definition: color.h:253
bool operator==(const Color &c) const
Color == Color operator (deep compare)
Definition: color.h:109
static Color gray20
Definition: color.h:565
static Colorf darkgrey
Definition: color.h:856
static Color mediumslateblue
Definition: color.h:397
static Colorf hotpink
Definition: color.h:952
static Colorf mediumorchid
Definition: color.h:1045
static Color tomato
Definition: color.h:538
static Colorf mediumvioletred
Definition: color.h:1063
static Colorf seashell
Definition: color.h:1156
static Colorf azure
Definition: color.h:790
static Color lightyellow
Definition: color.h:364
float get_alpha_f() const
Returns the alpha color component, in the range 0-1.
Definition: color.h:83
static Colorf lightpink
Definition: color.h:1000
static Colorf lightcyan
Definition: color.h:985
static Colorf coral
Definition: color.h:826
static Colorf gray10
Definition: color.h:1221
static Colorf grey
Definition: color.h:940
static Color aqua
Definition: color.h:127
static Colorf transparent
rgba(0, 0, 0, 0).
Definition: color.h:1219
static Colorf lavender
Definition: color.h:967
static Colorf lightsteelblue
Definition: color.h:1018
static Color mediumspringgreen
Definition: color.h:400
void set_colorf(float new_red, float new_green, float new_blue, float new_alpha=1.0f)
Set color based on rgba color components in the range 0-1.
Definition: color.h:620
static Colorf salmon
Definition: color.h:1147
static Colorf gainsboro
Definition: color.h:925
static Color lightgoldenrodyellow
Definition: color.h:331
static Color palegreen
Definition: color.h:448
static Colorf darkblue
Definition: color.h:841
unsigned char get_blue() const
Returns the blue color component, in the range 0-255.
Definition: color.h:80
static Colorf brown
Definition: color.h:811
static Color powderblue
Definition: color.h:472
static Color paleturquoise
Definition: color.h:451
static Colorf gray
Definition: color.h:937
static Color gold
Definition: color.h:274
static Colorf thistle
Definition: color.h:1192
static Colorf tomato
Definition: color.h:1195
float get_red() const
Get Red.
Definition: color.h:713
static Color seashell
Definition: color.h:499
Colorf(float r, float g, float b, float a=1.0f)
Constructs a color.
Definition: color.h:647
static Color lightgray
Definition: color.h:334
static Colorf mintcream
Definition: color.h:1069
static Colorf lightyellow
Definition: color.h:1021
static Color saddlebrown
Definition: color.h:487
static Color lightslategray
Definition: color.h:355
static Colorf gray30
Definition: color.h:1223
Type z
Definition: vec4.h:76
static Colorf dodgerblue
Definition: color.h:910
static Colorf gray20
Definition: color.h:1222
static Colorf royalblue
Definition: color.h:1141
static Colorf mistyrose
Definition: color.h:1072
static Colorf springgreen
Definition: color.h:1180
static Colorf gray80
Definition: color.h:1228
static Color grey
Definition: color.h:283
static Color forestgreen
Definition: color.h:262
static Color lime
Definition: color.h:367
static Colorf palegreen
Definition: color.h:1105
float get_alpha() const
Get Alpha.
Definition: color.h:728
static Color dimgrey
Definition: color.h:250
static Colorf lemonchiffon
Definition: color.h:976
float get_green() const
Get Green.
Definition: color.h:718
static Colorf honeydew
Definition: color.h:949
static Colorf yellow
Definition: color.h:1213
static Color orchid
Definition: color.h:442
static Color maroon
Definition: color.h:379
static Color silver
Definition: color.h:505
static Color gray40
Definition: color.h:567
static Colorf saddlebrown
Definition: color.h:1144
void set_rgb8(unsigned int color)
Set color based on rgb color components. Alpha is set to 255.
static Colorf slateblue
Definition: color.h:1168
static Colorf aquamarine
Definition: color.h:787
static Color darkturquoise
Definition: color.h:235
static Colorf darkviolet
Definition: color.h:895
static Color slategrey
Definition: color.h:517
static Color mistyrose
Definition: color.h:415
static Color darksalmon
Definition: color.h:220
Definition: Application/application.h:35
static Color chartreuse
Definition: color.h:163
static Color mintcream
Definition: color.h:412
static Colorf skyblue
Definition: color.h:1165
float get_blue() const
Get Blue.
Definition: color.h:723
static Color transparent
rgba(0, 0, 0, 0).
Definition: color.h:562
static Colorf darksalmon
Definition: color.h:877
static Colorf palevioletred
Definition: color.h:1111
static Colorf oldlace
Definition: color.h:1084
4D vector
Definition: size.h:44
static Colorf lime
Definition: color.h:1024
static Color lawngreen
Definition: color.h:316
static Colorf turquoise
Definition: color.h:1198
static Color midnightblue
Definition: color.h:409
static Colorf darkkhaki
Definition: color.h:859
static Colorf whitesmoke
Definition: color.h:1210
static Colorf antiquewhite
Definition: color.h:781
static Color lightslategrey
Definition: color.h:358
static Colorf darkred
Definition: color.h:874
void set_bgra8(unsigned int color)
Set color based on rgba color components.
static Colorf ivory
Definition: color.h:961
static Color lightsteelblue
Definition: color.h:361
static Color darkorchid
Definition: color.h:214
static Color sandybrown
Definition: color.h:493
static Colorf sandybrown
Definition: color.h:1150
static Color mediumaquamarine
Definition: color.h:382
static Color papayawhip
Definition: color.h:457
static Colorf indianred
Definition: color.h:955
static Color darkslategray
Definition: color.h:229
static Colorf mediumturquoise
Definition: color.h:1060
static Color lemonchiffon
Definition: color.h:319
static Color limegreen
Definition: color.h:370
static Color slategray
Definition: color.h:514