colour.plotting.notation Module

Colour Notation Systems Plotting

Defines the colour notation systems plotting objects:

colour.plotting.notation.single_munsell_value_function_plot(function='ASTM D1535-08', **kwargs)[source]

Plots given Lightness function.

Parameters:
  • function (unicode, optional) – Munsell value function to plot.
  • **kwargs (dict, optional) – Keywords arguments.
Returns:

Current figure or None.

Return type:

Figure

Examples

>>> f = 'ASTM D1535-08'
>>> single_munsell_value_function_plot(f)  
colour.plotting.notation.multi_munsell_value_function_plot(functions=None, **kwargs)[source]

Plots given Munsell value functions.

Parameters:
  • functions (array_like, optional) – Munsell value functions to plot.
  • **kwargs (dict, optional) – Keywords arguments.
Returns:

Current figure or None.

Return type:

Figure

Raises:

KeyError – If one of the given Munsell value function is not found in the factory Munsell value functions.

Examples

>>> fs = ('ASTM D1535-08', 'McCamy 1987')
>>> multi_munsell_value_function_plot(fs)