EHS/include/ehs/Color4.h

44 lines
803 B
C
Raw Normal View History

2024-02-05 22:25:30 -08:00
#pragma once
#include "Types.h"
#include "Color3.h"
namespace ehs
{
class Color4
{
public:
float r;
float g;
float b;
float a;
Color4();
Color4(const float scalar);
explicit Color4(const Color3& color);
Color4(const float r, const float g, const float b, const float a = 1.0f);
Color4(const Color4& color);
Color4& operator=(const float scalar);
Color4& operator=(const Color3& color);
Color4& operator=(const Color4& color);
bool operator==(const Color4& color) const;
bool operator!=(const Color4& color) const;
float operator[](const UInt_64 i) const;
float& operator[](const UInt_64 i);
Color4& operator*=(const Color4& color);
Color4 operator*(const Color4& color) const;
};
}