@{ * Convert color from the CIE-L*ab system to RGB. */
| 1486 | * Convert color from the CIE-L*ab system to RGB. |
| 1487 | */ |
| 1488 | static void LabToRGB(const double lab[3], double rgb[3]) |
| 1489 | { |
| 1490 | LabToRGB(lab[0], lab[1], lab[2], rgb + 0, rgb + 1, rgb + 2); |
| 1491 | } |
| 1492 | static void LabToRGB(double L, double a, double b, double* red, double* green, double* blue); |
| 1493 | ///@} |
| 1494 |
no outgoing calls