From bb8b3bf2aa6fab11dbe2bd780a1c11883d19c2bb Mon Sep 17 00:00:00 2001 From: bmintz Date: Sun, 22 Jul 2018 20:01:31 -0500 Subject: [PATCH] Add Colour.from_hsv HSV is an easier to use colour format, and its inclusion in the colour module will hopefully encourage its use. --- discord/colour.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/discord/colour.py b/discord/colour.py index 8f0426873..d91aa2a1e 100644 --- a/discord/colour.py +++ b/discord/colour.py @@ -24,6 +24,8 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ +import colorsys + class Colour: """Represents a Discord role colour. This class is similar to an (red, green, blue) :class:`tuple`. @@ -104,6 +106,12 @@ class Colour: """Constructs a :class:`Colour` from an RGB tuple.""" return cls((r << 16) + (g << 8) + b) + @classmethod + def from_hsv(cls, h, s, v): + """Constructs a :class:`Colour` from an HSV tuple.""" + rgb = colorsys.hsv_to_rgb(h, s, v) + return cls.from_rgb(*(int(x * 255) for x in rgb)) + @classmethod def default(cls): """A factory method that returns a :class:`Colour` with a value of 0."""