#include "Color.hpp" namespace vkvm { Color::Color(unsigned char red, unsigned char green, unsigned char blue) noexcept : red(red), green(green), blue(blue) { } Color::Color(unsigned int hex) noexcept { red = (unsigned char) ((hex >> 16 & 0xFF));//NOLINT green = (unsigned char) ((hex >> 8u & 0xFF));//NOLINT blue = (unsigned char) ((hex & 0xFF));//NOLINT } auto Color::getRed() -> unsigned char { return red; } auto Color::getGreen() -> unsigned char { return green; } auto Color::getBlue() -> unsigned char { return blue; } auto Color::setRed(unsigned char value) -> void { red = value; } auto Color::setGreen(unsigned char value) -> void { green = value; } auto Color::setBlue(unsigned char value) -> void { blue = value; } bool Color::operator==(const Color &other) const { return this->blue == other.blue && this->green == other.green && this->red == other.red; } bool Color::operator!=(const Color &other) const { return this->blue != other.blue || this->green != other.green || this->red != other.red; } }