MCPcopy Create free account
hub / github.com/Kitware/VTK / ProLabToRGB

Function ProLabToRGB

Common/Core/vtkMath.h:1462–1465  ·  view source on GitHub ↗

@{ * Convert color from the ProLab system to RGB. */

Source from the content-addressed store, hash-verified

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

Callers 2

TestColorConvertFunction · 0.85
GetTableMethod · 0.85

Calls

no outgoing calls

Tested by 1

TestColorConvertFunction · 0.68