MyGL
Loading...
Searching...
No Matches
Color.hpp
1#ifndef MYGL_COLOR
2#define MYGL_COLOR
3
4#include "mygl_export.h"
5
6#include <glm/glm.hpp>
7
8#include <string>
9#include <cstdint>
10
11namespace my
12{
16 class Color
17 {
18 private:
19 uint8_t r;
20 uint8_t g;
21 uint8_t b;
22 uint8_t alpha;
23 glm::vec4 normalized;
24
25 public:
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;
31
35 MYGL_EXPORT Color() noexcept;
36
44 MYGL_EXPORT Color(uint8_t r, uint8_t g, uint8_t b, uint8_t alpha = 255) noexcept;
45
51 MYGL_EXPORT Color(const std::string& hexColor, uint8_t alpha = 255);
52
57 MYGL_EXPORT glm::ivec4 get() const noexcept;
58
64 MYGL_EXPORT glm::vec4 getNormalized() const noexcept;
65
69 MYGL_EXPORT int getRed() const noexcept;
70
74 MYGL_EXPORT int getGreen() const noexcept;
75
79 MYGL_EXPORT int getBlue() const noexcept;
80
84 MYGL_EXPORT int getAlpha() const noexcept;
85
90 MYGL_EXPORT void setRed(uint8_t red) noexcept;
91
96 MYGL_EXPORT void setGreen(uint8_t green) noexcept;
97
102 MYGL_EXPORT void setBlue(uint8_t blue) noexcept;
103
108 MYGL_EXPORT void setAlpha(uint8_t alpha) noexcept;
109 };
110
111} // namespace my
112
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;
115
116#endif // MYGL_COLOR
Class for storing color objects.
Definition Color.hpp:17
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.
Definition Camera.hpp:10