@{ * Convert Color from the CIE XYZ system to CIE-L*ab. */
| 1412 | * Convert Color from the CIE XYZ system to CIE-L*ab. |
| 1413 | */ |
| 1414 | static void XYZToLab(const double xyz[3], double lab[3]) |
| 1415 | { |
| 1416 | XYZToLab(xyz[0], xyz[1], xyz[2], lab + 0, lab + 1, lab + 2); |
| 1417 | } |
| 1418 | static void XYZToLab(double x, double y, double z, double* L, double* a, double* b); |
| 1419 | ///@} |
| 1420 |
no outgoing calls