colour.plotting.tm3018.plot_single_sd_colour_rendition_report_simple#
- colour.plotting.tm3018.plot_single_sd_colour_rendition_report_simple(sd: SpectralDistribution, report_size: tuple[float, float] = CONSTANT_REPORT_SIZE_SIMPLE, report_row_height_ratios: tuple = CONSTANT_REPORT_ROW_HEIGHT_RATIOS_SIMPLE, report_box_padding: dict | None = None, **kwargs: Any) Tuple[Figure, Axes] [source]#
Generate the simple ANSI/IES TM-30-18 Colour Rendition Report for given spectral distribution.
- Parameters:
sd (SpectralDistribution) – Spectral distribution of the emission source to generate the report for.
report_size (tuple[float, float]) – Report size, default to A4 paper size in inches.
report_row_height_ratios (tuple) – Report size row height ratios.
report_box_padding (dict | None) – Report box padding, tries to define the padding around the figure and in-between the axes.
kwargs (Any) – {
colour.plotting.artist()
,colour.plotting.render()
}, See the documentation of the previously listed definitions.
- Returns:
Current figure and axes.
- Return type:
Examples
>>> from colour import SDS_ILLUMINANTS >>> sd = SDS_ILLUMINANTS["FL2"] >>> plot_single_sd_colour_rendition_report_simple(sd) ... (<Figure size ... with ... Axes>, <...Axes...>)