colour.plotting.RGB_colourspaces_chromaticity_diagram_plot_CIE1931

colour.plotting.RGB_colourspaces_chromaticity_diagram_plot_CIE1931(colourspaces=None, cmfs='CIE 1931 2 Degree Standard Observer', chromaticity_diagram_callable_CIE1931=<function chromaticity_diagram_plot_CIE1931>, **kwargs)[source]

Plots given RGB colourspaces in CIE 1931 Chromaticity Diagram.

Parameters:
  • colourspaces (array_like, optional) – RGB colourspaces to plot.
  • cmfs (unicode, optional) – Standard observer colour matching functions used for diagram bounds.
  • chromaticity_diagram_callable_CIE1931 (callable, optional) – Callable responsible for drawing the CIE 1931 Chromaticity Diagram.
Other Parameters:
 
Returns:

Current figure or None.

Return type:

Figure

Examples

>>> c = ['ITU-R Rec. 709', 'ACEScg', 'S-Gamut']
>>> RGB_colourspaces_chromaticity_diagram_plot_CIE1931(c)
...