Defines the CIE chromaticity diagrams plotting objects:
Plots the CIE 1931 Chromaticity Diagram colours.
| Parameters: |
|
|---|---|
| Returns: | Definition success. |
| Return type: | bool |
Examples
>>> CIE_1931_chromaticity_diagram_colours_plot()
True
Plots the CIE 1931 Chromaticity Diagram.
| Parameters: |
|
|---|---|
| Returns: | Definition success. |
| Return type: | bool |
Examples
>>> CIE_1931_chromaticity_diagram_plot()
True
Plots the CIE 1960 UCS Chromaticity Diagram colours.
| Parameters: |
|
|---|---|
| Returns: | Definition success. |
| Return type: | bool |
Examples
>>> CIE_1960_UCS_chromaticity_diagram_colours_plot()
True
Plots the CIE 1960 UCS Chromaticity Diagram.
| Parameters: |
|
|---|---|
| Returns: | Definition success. |
| Return type: | bool |
Examples
>>> CIE_1960_UCS_chromaticity_diagram_plot()
True
Plots the CIE 1976 UCS Chromaticity Diagram colours.
| Parameters: |
|
|---|---|
| Returns: | Definition success. |
| Return type: | bool |
Examples
>>> CIE_1976_UCS_chromaticity_diagram_colours_plot()
True
Plots the CIE 1976 UCS Chromaticity Diagram.
| Parameters: |
|
|---|---|
| Returns: | Definition success. |
| Return type: | bool |
Examples
>>> CIE_1976_UCS_chromaticity_diagram_plot()
True
Plots given spectral power distribution chromaticity coordinates into the CIE 1931 Chromaticity Diagram.
| Parameters: |
|
|---|---|
| Returns: | Definition success. |
| Return type: | bool |
Examples
>>> from colour import ILLUMINANTS_RELATIVE_SPDS
>>> A = ILLUMINANTS_RELATIVE_SPDS['A']
>>> D65 = ILLUMINANTS_RELATIVE_SPDS['D65']
>>> spds_CIE_1931_chromaticity_diagram_plot([A, D65])
True
Plots given spectral power distribution chromaticity coordinates into the CIE 1960 UCS Chromaticity Diagram.
| Parameters: |
|
|---|---|
| Returns: | Definition success. |
| Return type: | bool |
Examples
>>> from colour import ILLUMINANTS_RELATIVE_SPDS
>>> A = ILLUMINANTS_RELATIVE_SPDS['A']
>>> D65 = ILLUMINANTS_RELATIVE_SPDS['D65']
>>> spds_CIE_1960_UCS_chromaticity_diagram_plot([A, D65])
True
Plots given spectral power distribution chromaticity coordinates into the CIE 1976 UCS Chromaticity Diagram.
| Parameters: |
|
|---|---|
| Returns: | Definition success. |
| Return type: | bool |
Examples
>>> from colour import ILLUMINANTS_RELATIVE_SPDS
>>> A = ILLUMINANTS_RELATIVE_SPDS['A']
>>> D65 = ILLUMINANTS_RELATIVE_SPDS['D65']
>>> spds_CIE_1976_UCS_chromaticity_diagram_plot([A, D65])
True