33 #include "../../Core/Math/vec4.h"
59 Color(
unsigned char red,
unsigned char green,
unsigned char blue,
unsigned char alpha = 255)
60 :
Vec4ub(red, green, blue, alpha) {
return; }
95 unsigned int get_argb8()
const {
return (((
unsigned int)
w) << 24) | (((
unsigned int)
x) << 16) | (((
unsigned int)
y) << 8) | (
unsigned int)
z; }
98 unsigned int get_abgr8()
const {
return (((
unsigned int)
w) << 24) | (((
unsigned int)
z) << 16) | (((
unsigned int)
y) << 8) | (
unsigned int)
x; }
101 unsigned int get_rgba8()
const {
return (((
unsigned int)
x) << 24) | (((
unsigned int)
y) << 16) | (((
unsigned int)
z) << 8) | (
unsigned int)
w; }
104 unsigned int get_bgra8()
const {
return (((
unsigned int)
z) << 24) | (((
unsigned int)
y) << 16) | (((
unsigned int)
x) << 8) | (
unsigned int)
w; }
111 return (
x == c.
x) && (
y == c.
y) && (
z == c.
z) && (
w == c.
w);
117 return (
x != c.
x) || (
y != c.
y) || (
z != c.
z) || (
w != c.
w);
590 void set_red_f(
float value) {
x = (
unsigned char) (value*255.0
f); }
599 void set_color(
unsigned char new_red,
unsigned char new_green,
unsigned char new_blue,
unsigned char new_alpha = 255)
620 void set_colorf(
float new_red,
float new_green,
float new_blue,
float new_alpha = 1.0
f)
622 x = (
unsigned char) (new_red * 255.0
f);
623 y = (
unsigned char) (new_green * 255.0f);
624 z = (
unsigned char) (new_blue * 255.0f);
625 w = (
unsigned char) (new_alpha * 255.0f);
658 :
Vec4f((array_rgba[0]), (array_rgba[1]), (array_rgba[2]), (array_rgba[3]))
678 Colorf(
unsigned char r,
unsigned char g,
unsigned char b,
unsigned char a=255)
679 :
Vec4f((r/255.0
f), (g/255.0
f), (b/255.0
f), (
a/255.0
f))
693 :
Vec4f((r/255.0
f), (g/255.0
f), (b/255.0
f), (
a/255.0
f))
733 x = (
x < 0.0f) ? 0.0
f : ((
x > 1.0
f) ? 1.0f :
x);
734 y = (
y < 0.0f) ? 0.0
f : ((
y > 1.0
f) ? 1.0f :
y);
735 z = (
z < 0.0f) ? 0.0
f : ((
z > 1.0
f) ? 1.0f :
z);
736 w = (
w < 0.0f) ? 0.0
f : ((
w > 1.0
f) ? 1.0f :
w);
754 return (
x == c.
x) && (
y == c.
y) && (
z == c.
z) && (
w == c.
w);
760 return (
x != c.
x) || (
y != c.
y) || (
z != c.
z) || (
w != c.
w);
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