lchToRgb static method

List<double> lchToRgb(
  1. List<double> tuple
)

RGB values are ranging in 0;1. @param tuple An array containing the color's LCH values. @return An array containing the resulting color's RGB coordinates.

Implementation

static List<double> lchToRgb(List<double> tuple) {
  return xyzToRgb(luvToXyz(lchToLuv(tuple)));
}