colour.plotting.models.plot_pointer_gamut#

colour.plotting.models.plot_pointer_gamut(pointer_gamut_colours: ArrayLike | str | None = None, pointer_gamut_opacity: float = 1, method: Literal['CIE 1931', 'CIE 1960 UCS', 'CIE 1976 UCS'] | str = 'CIE 1931', **kwargs: Any) Tuple[Figure, Axes][source]#

Plot Pointer’s Gamut according to given method.

Parameters:
  • pointer_gamut_colours (ArrayLike | str | None) – Colours of the Pointer’s Gamut.

  • pointer_gamut_opacity (float) – Opacity of the Pointer’s Gamut.

  • method (Literal['CIE 1931', 'CIE 1960 UCS', 'CIE 1976 UCS'] | str) – Plotting method.

  • kwargs (Any) – {colour.plotting.artist(), colour.plotting.render()}, See the documentation of the previously listed definitions.

Returns:

Current figure and axes.

Return type:

tuple

Examples

>>> plot_pointer_gamut(pointer_gamut_colours="RGB")  
(<Figure size ... with 1 Axes>, <...Axes...>)
plot_pointer_gamut