diff --git a/src/Color4.cpp b/src/Color4.cpp index f68168c..8b538e3 100644 --- a/src/Color4.cpp +++ b/src/Color4.cpp @@ -137,10 +137,6 @@ Color4 Color4::FromHexA(const std::string &hexACode) { throw std::invalid_argument("Invalid hex code"); } -Color4 Color4::FromHSV(float hue, float saturation, float value, float alpha) { - return Color4(HSV{hue, saturation, value}, alpha); -} - u8 Color4::RedChannel() const { return r;} u8 Color4::GreenChannel() const { return g;}