Function: color-lch-to-lab

color-lch-to-lab is a byte-compiled function defined in color.el.gz.

Signature

(color-lch-to-lab L C H)

Documentation

Convert CIE L*a*b* to L*C*h*.

Source Code

;; Defined in /usr/src/emacs/lisp/color.el.gz
(defun color-lch-to-lab (L C h)
  "Convert CIE L*a*b* to L*C*h*."
  (list L (* C (cos h)) (* C (sin h))))