colour.plotting.plot_RGB_colourspaces_in_chromaticity_diagram_CIE1931#

colour.plotting.plot_RGB_colourspaces_in_chromaticity_diagram_CIE1931(colourspaces: RGB_Colourspace | str | Sequence[RGB_Colourspace | str], cmfs: MultiSpectralDistributions | str | Sequence[MultiSpectralDistributions | str] = 'CIE 1931 2 Degree Standard Observer', chromaticity_diagram_callable_CIE1931: Callable = plot_chromaticity_diagram_CIE1931, show_whitepoints: bool = True, show_pointer_gamut: bool = False, chromatically_adapt: bool = False, plot_kwargs: Dict | List[Dict] | None = None, **kwargs: Any) Tuple[Figure, Axes][source]#

Plot given RGB colourspaces in the CIE 1931 Chromaticity Diagram.

Parameters:
Returns:

Current figure and axes.

Return type:

tuple

Examples

>>> plot_RGB_colourspaces_in_chromaticity_diagram_CIE1931(
...     ["ITU-R BT.709", "ACEScg", "S-Gamut"]
... )
... 
(<Figure size ... with 1 Axes>, <...AxesSubplot...>)
plot_RGB_colourspaces_in_chromaticity_diagram_CIE1931