Class CIELCHColor

All Implemented Interfaces:
Value

public class CIELCHColor extends AbstractCIEColor
This class represents an CIE LCH color value.
  • Field Details

  • Constructor Details

    • CIELCHColor

      public CIELCHColor(float l, float c, float h, float[] whitepoint)
      Creates a new CIELCHColor.
      Parameters:
      l - the lightness (L) value
      c - the chroma (C) value
      h - the hue (H) value
      whitepoint - the white point in CIE XYZ coordinates
    • CIELCHColor

      public CIELCHColor(float l, float c, float h)
      Creates a new CIELCHColor with D65 as illuminant.
      Parameters:
      l - the lightness (L) value
      c - the chroma (C) value
      h - the hue (H) value
  • Method Details