------------------------------------------------------------------------------
| 54 | |
| 55 | //------------------------------------------------------------------------------ |
| 56 | inline static void getLabColor(const Position& pos, double _lab[3]) |
| 57 | { |
| 58 | double rgb[3]; |
| 59 | getRGBColor(pos, rgb); |
| 60 | |
| 61 | vtkMath::RGBToLab(rgb, _lab); |
| 62 | } |
| 63 | |
| 64 | //------------------------------------------------------------------------------ |
| 65 | inline static int getIndex(const Position& pos) |
no test coverage detected