fromJch static method

Cam16 fromJch(
  1. double j,
  2. double c,
  3. double h
)

Create a CAM16 color from lightness j, chroma c, and hue h, assuming the color was viewed in default viewing conditions.

Implementation

static Cam16 fromJch(double j, double c, double h) {
  return fromJchInViewingConditions(j, c, h, ViewingConditions.sRgb);
}