------------------------------------------------------------------------------
| 2829 | |
| 2830 | //------------------------------------------------------------------------------ |
| 2831 | void vtkMath::RGBToProLab(double red, double green, double blue, double* L, double* a, double* b) |
| 2832 | { |
| 2833 | double x, y, z; |
| 2834 | vtkMath::RGBToXYZ(red, green, blue, &x, &y, &z); |
| 2835 | vtkMath::XYZToProLab(x, y, z, L, a, b); |
| 2836 | } |
| 2837 | |
| 2838 | //------------------------------------------------------------------------------ |
| 2839 | void vtkMath::ProLabToRGB(double L, double a, double b, double* red, double* green, double* blue) |
nothing calls this directly
no test coverage detected