4#include "mygl_export.h"
26 MYGL_EXPORT
static const Color white;
27 MYGL_EXPORT
static const Color black;
28 MYGL_EXPORT
static const Color red;
29 MYGL_EXPORT
static const Color green;
30 MYGL_EXPORT
static const Color blue;
44 MYGL_EXPORT
Color(uint8_t r, uint8_t g, uint8_t b, uint8_t alpha = 255) noexcept;
51 MYGL_EXPORT
Color(const std::
string& hexColor, uint8_t alpha = 255);
57 MYGL_EXPORT glm::ivec4
get() const noexcept;
69 MYGL_EXPORT
int getRed() const noexcept;
90 MYGL_EXPORT
void setRed(uint8_t red) noexcept;
96 MYGL_EXPORT
void setGreen(uint8_t green) noexcept;
102 MYGL_EXPORT
void setBlue(uint8_t blue) noexcept;
113MYGL_EXPORT
bool operator==(const
my::
Color& color1, const
my::
Color& color2) noexcept;
114MYGL_EXPORT
bool operator!=(const
my::
Color& color1, const
my::
Color& color2) noexcept;
Class for storing color objects.
MYGL_EXPORT int getBlue() const noexcept
MYGL_EXPORT glm::ivec4 get() const noexcept
Gives the color as a glm::ivec4.
MYGL_EXPORT int getGreen() const noexcept
MYGL_EXPORT int getRed() const noexcept
MYGL_EXPORT glm::vec4 getNormalized() const noexcept
Gives the color with its components normalized (float between 0 and 1)
MYGL_EXPORT void setGreen(uint8_t green) noexcept
Sets the color's green component.
MYGL_EXPORT Color() noexcept
Default constructor, creates a white color.
MYGL_EXPORT void setBlue(uint8_t blue) noexcept
Sets the color's blue component.
MYGL_EXPORT int getAlpha() const noexcept
MYGL_EXPORT void setAlpha(uint8_t alpha) noexcept
Sets the color's alpha component.
MYGL_EXPORT void setRed(uint8_t red) noexcept
Sets the color's red component.
Namespace containing every class, function and enum of the library.