colour.plotting.plot_ellipses_MacAdam1942_in_chromaticity_diagram_CIE1976UCS#
- colour.plotting.plot_ellipses_MacAdam1942_in_chromaticity_diagram_CIE1976UCS(chromaticity_diagram_callable_CIE1976UCS: Callable = plot_chromaticity_diagram_CIE1976UCS, chromaticity_diagram_clipping: bool = False, ellipse_kwargs: dict | List[dict] | None = None, **kwargs: Any) Tuple[Figure, Axes] [source]#
Plot MacAdam (1942) Ellipses (Observer PGN) in the CIE 1976 UCS Chromaticity Diagram.
- Parameters:
chromaticity_diagram_callable_CIE1976UCS (Callable) – Callable responsible for drawing the CIE 1976 UCS Chromaticity Diagram.
chromaticity_diagram_clipping (bool) – Whether to clip the CIE 1976 UCS Chromaticity Diagram colours with the ellipses.
ellipse_kwargs (dict | List[dict] | None) – Parameters for the
Ellipse
class,ellipse_kwargs
can be either a single dictionary applied to all the ellipses with same settings or a sequence of dictionaries with different settings for each ellipse.kwargs (Any) – {
colour.plotting.artist()
,colour.plotting.diagrams.plot_chromaticity_diagram()
,colour.plotting.models.plot_ellipses_MacAdam1942_in_chromaticity_diagram()
},colour.plotting.render()
}, See the documentation of the previously listed definitions.
- Returns:
Current figure and axes.
- Return type:
Examples
>>> plot_ellipses_MacAdam1942_in_chromaticity_diagram_CIE1976UCS() ... (<Figure size ... with 1 Axes>, <...Axes...>)