solveToCam static method
Finds an sRGB color with the given hue, chroma, and L*, if possible.
Implementation
@pragma("wasm:prefer-inline")
@pragma("vm:prefer-inline")
@pragma("dart2js:prefer-inline")
static Cam16 solveToCam(double hueDegrees, double chroma, double lstar) =>
Cam16.fromInt(solveToInt(hueDegrees, chroma, lstar));