colour.plotting.temperature.plot_daylight_locus#
- colour.plotting.temperature.plot_daylight_locus(daylight_locus_colours: ArrayLike | str | None = None, daylight_locus_opacity: float = 1, daylight_locus_use_mireds: bool = False, method: Literal['CIE 1931', 'CIE 1960 UCS', 'CIE 1976 UCS'] | str = 'CIE 1931', **kwargs: Any) Tuple[plt.Figure, plt.Axes] [source]#
Plot the Daylight Locus according to given method.
- Parameters:
daylight_locus_colours (ArrayLike | str | None) – Colours of the Daylight Locus, if
daylight_locus_colours
is set to RGB, the colours will be computed according to the corresponding chromaticity coordinates.daylight_locus_opacity (float) – Opacity of the Daylight Locus.
daylight_locus_use_mireds (bool) – Whether to use micro reciprocal degrees for the iso-temperature lines.
method (Literal['CIE 1931', 'CIE 1960 UCS', 'CIE 1976 UCS'] | str) – Chromaticity Diagram method.
kwargs (Any) – {
colour.plotting.artist()
,colour.plotting.render()
}, See the documentation of the previously listed definitions.
- Returns:
Current figure and axes.
- Return type:
Examples
>>> plot_daylight_locus(daylight_locus_colours="RGB") ... (<Figure size ... with 1 Axes>, <...Axes...>)