This commit is contained in:
Saikari
2024-12-17 04:55:13 +03:00
committed by GitHub
parent c0efa35e8a
commit 075c553521
20 changed files with 72 additions and 38 deletions

View File

@@ -7,11 +7,11 @@
#include "omath/Vector3.hpp"
#include <cstdint>
#include "omath/Vector4.hpp"
#include "omath_export.h"
namespace omath
{
struct HSV
struct OMATH_API HSV
{
float m_hue{};
float m_saturation{};
@@ -19,7 +19,7 @@ namespace omath
};
class Color final : public Vector4
class OMATH_API Color final : public Vector4
{
public:
constexpr Color(float r, float g, float b, float a) : Vector4(r,g,b,a)