| 91 | } |
| 92 | |
| 93 | void StatusBar::DisplayRendererInfo(Point3D point, TimePointType time) |
| 94 | { |
| 95 | if (m_Implementation == nullptr) |
| 96 | return; |
| 97 | |
| 98 | std::ostringstream stream; |
| 99 | stream.imbue(std::locale::classic()); |
| 100 | stream.precision(2); |
| 101 | |
| 102 | WriteCommonRendererInfo(stream, point, time); |
| 103 | |
| 104 | m_Implementation->DisplayGreyValueText(stream.str().c_str()); |
| 105 | } |
| 106 | |
| 107 | void StatusBar::DisplayImageInfo(Point3D point, itk::Index<3> index, TimePointType time, ScalarType pixelValue) |
| 108 | { |
no test coverage detected