.. include:: headings.inc .. _HSVValue: ========================================================================================================================================== |phoenix_title| **HSVValue** ========================================================================================================================================== A simple class which stores hue, saturation and value as doubles in the range 0.0-1.0. | |class_hierarchy| Inheritance Diagram ===================================== Inheritance diagram for class **HSVValue** .. raw:: html

Inheritance diagram of HSVValue

| |method_summary| Methods Summary ================================ ================================================================================ ================================================================================ :meth:`~HSVValue.__init__` Constructor for :ref:`HSVValue`, an object that contains values for hue, saturation and value which represent the value of a color. ================================================================================ ================================================================================ | |api| Class API =============== .. class:: HSVValue(object) A simple class which stores hue, saturation and value as doubles in the range 0.0-1.0. **Possible constructors**:: HSVValue(h=0.0, s=0.0, v=0.0) .. method:: __init__(self, h=0.0, s=0.0, v=0.0) Constructor for :ref:`HSVValue`, an object that contains values for hue, saturation and value which represent the value of a color. It is used by :meth:`Image.HSVtoRGB` and :meth:`Image.RGBtoHSV` , which convert between ``HSV`` color space and ``RGB`` color space. :param `h`: :type `h`: float :param `s`: :type `s`: float :param `v`: :type `v`: float