colour.plotting.plot_multi_cmfs¶
-
colour.plotting.
plot_multi_cmfs
(cmfs, **kwargs)[source]¶ Plots given colour matching functions.
- Parameters
cmfs (unicode or LMS_ConeFundamentals or RGB_ColourMatchingFunctions or XYZ_ColourMatchingFunctions or array_like) – Colour matching functions to plot.
cmfs
elements can be of any type or form supported by thecolour.plotting.filter_cmfs()
definition.- Other Parameters
**kwargs (dict, optional) – {
colour.plotting.artist()
,colour.plotting.render()
}, Please refer to the documentation of the previously listed definitions.- Returns
Current figure and axes.
- Return type
Examples
>>> cmfs = [ ... 'CIE 1931 2 Degree Standard Observer', ... 'CIE 1964 10 Degree Standard Observer', ... ] >>> plot_multi_cmfs(cmfs) (<Figure size ... with 1 Axes>, <...AxesSubplot...>)