java.lang.Object
java.awt.geom.Path2D
java.awt.geom.Path2D.Double
imagingbook.common.color.cie.CieXyPlot
- All Implemented Interfaces:
Shape
,Serializable
,Cloneable
This class renders the famous CIE xy-chromaticity diagram, also known as the "horeseshoe" curve, delineating the
range of visible colors in the xy-diagram. The shape is created in a square canvas whose size can be specified.
The result is "upside down", i.e., the vertical coordinate runs from top to bottom.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.awt.geom.Path2D
Path2D.Double, Path2D.Float
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final double[][]
CIE 1964 10-deg chromaticity coordinates.Fields inherited from class java.awt.geom.Path2D
WIND_EVEN_ODD, WIND_NON_ZERO
-
Constructor Summary
ConstructorsConstructorDescriptionCieXyPlot
(double CanvasSize) Constructor, creates a xy-diagram in a canvas with the specified size. -
Method Summary
Methods inherited from class java.awt.geom.Path2D.Double
append, clone, curveTo, getBounds2D, getPathIterator, lineTo, moveTo, quadTo, transform, trimToSize
Methods inherited from class java.awt.geom.Path2D
append, closePath, contains, contains, contains, contains, contains, contains, contains, contains, createTransformedShape, getBounds, getCurrentPoint, getPathIterator, getWindingRule, intersects, intersects, intersects, intersects, reset, setWindingRule
-
Field Details
-
CIE1964xyz
CIE 1964 10-deg chromaticity coordinates. Copied from http://www.cvrl.org/ccs.htm. The entry format is [ λ, x(λ), y(λ), z(λ)], with wavelength λ (in nm) and xyz chromaticity coordinates. The array is truncated above 720nm, thereby skipping the "dangling" measurements.
-
-
Constructor Details
-
CieXyPlot
Constructor, creates a xy-diagram in a canvas with the specified size.- Parameters:
CanvasSize
- the size of the canvas
-