colour.plotting.plot_blackbody_colours#
- colour.plotting.plot_blackbody_colours(shape: SpectralShape = SpectralShape(150, 12500, 50), cmfs: MultiSpectralDistributions | str | Sequence[MultiSpectralDistributions | str] = 'CIE 1931 2 Degree Standard Observer', **kwargs: Any) Tuple[Figure, Axes] [source]#
Plot blackbody colours.
- Parameters:
shape (SpectralShape) – Spectral shape to use as plot boundaries.
cmfs (MultiSpectralDistributions | str | Sequence[MultiSpectralDistributions | str]) – Standard observer colour matching functions used for computing the blackbody colours.
cmfs
can be of any type or form supported by thecolour.plotting.common.filter_cmfs()
definition.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_blackbody_colours(SpectralShape(150, 12500, 50)) ... (<Figure size ... with 1 Axes>, <...Axes...>)