------------------------------------------------------------------------------
| 718 | |
| 719 | //------------------------------------------------------------------------------ |
| 720 | void GeometryViewer::SetColor(int r, int g, int b) |
| 721 | { |
| 722 | std::cout << __func__ << '(' << r << ',' << g << ',' << b << ')' << std::endl; |
| 723 | this->P->Actor->GetProperty()->SetColor(r / 255., g / 255., b / 255.); |
| 724 | } |
| 725 | |
| 726 | //------------------------------------------------------------------------------ |
| 727 | void GeometryViewer::SetColorMapPreset(const std::string& presetName) |
no test coverage detected