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_mireds: bool = False, method: Literal['CIE 1931', 'CIE 1960 UCS', 'CIE 1976 UCS'] | str = 'CIE 1931', **kwargs: Any) Tuple[Figure, Axes][source]#
Plot the Daylight Locus using the specified chromaticity diagram method.
- Parameters:
daylight_locus_colours (ArrayLike | str | None) – Colours of the Daylight Locus. If set to RGB, the colours will be computed from the corresponding chromaticity coordinates.
daylight_locus_opacity (float) – Opacity of the Daylight Locus.
daylight_locus_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...>)