In the document, cmfs argument is used to calculate the spectra locus in chromaticity diagram. But I found in plot_RGB_colourspaces_in_chromaticity_diagram_CIE1931 this argument are not used, it always produce a result based on CIE1931-2 deg observer. While plot_chromaticity_diagram_CIE1931, plot_chromaticity_diagram, plot_spectral_locus all works well, I think the cmfs may be not porperly passed.
Code for Reproduction
import colour
from colour.plotting import *
colour.plotting.diagrams.plot_spectral_locus(
cmfs='CIE 2015 2 Degree Standard Observer'
)
colour.plotting.diagrams.plot_chromaticity_diagram(
cmfs='CIE 2015 2 Degree Standard Observer'
)
colour.plotting.diagrams.plot_chromaticity_diagram_CIE1931(
cmfs='CIE 2015 2 Degree Standard Observer'
)
colour.plotting.plot_RGB_colourspaces_in_chromaticity_diagram_CIE1931(
['sRGB'],
cmfs='CIE 2015 2 Degree Standard Observer'
)
Description
In the document,
cmfs
argument is used to calculate the spectra locus in chromaticity diagram. But I found inplot_RGB_colourspaces_in_chromaticity_diagram_CIE1931
this argument are not used, it always produce a result based on CIE1931-2 deg observer. Whileplot_chromaticity_diagram_CIE1931
,plot_chromaticity_diagram
,plot_spectral_locus
all works well, I think thecmfs
may be not porperly passed.Code for Reproduction
Exception Message
No response
Environment Information
No response