class
ColorContents
Represents a color
Public static variables
Constructors, destructors, conversion operators
Public functions
- auto Pack() const -> fint noexcept
- auto operator+(const Color& other) const -> Color
- auto operator*(const Color& other) const -> Color
- auto operator==(const Color& other) const -> bool
- auto operator!=(const Color& other) const -> bool
- auto Normalize() const -> Vector3f noexcept
- auto NormalizeAlpha() const -> Vector4f noexcept
Public variables
Function documentation
bool bpf:: math:: Color:: operator==(const Color& other) const
Parameters | |
---|---|
other | the color to compare with |
Returns | true if the two colors are equal, false otherwise |
Compare two colors
bool bpf:: math:: Color:: operator!=(const Color& other) const
Parameters | |
---|---|
other | the color to compare with |
Returns | false if the two colors are equal, true otherwise |
Compare two colors
Vector4f bpf:: math:: Color:: NormalizeAlpha() const noexcept
Returns | normalized RGBA color as an order 4 float vector |
---|
Normalizes this color taking all channels (supports alpha)