@{ * Convert color from the ProLab system to RGB. */
| 1460 | * Convert color from the ProLab system to RGB. |
| 1461 | */ |
| 1462 | static void ProLabToRGB(const double prolab[3], double rgb[3]) |
| 1463 | { |
| 1464 | ProLabToRGB(prolab[0], prolab[1], prolab[2], rgb + 0, rgb + 1, rgb + 2); |
| 1465 | } |
| 1466 | static void ProLabToRGB(double L, double a, double b, double* red, double* green, double* blue); |
| 1467 | ///@} |
| 1468 |
no outgoing calls