| 78 | } |
| 79 | |
| 80 | static void WriteCommonImageInfo(std::ostringstream& stream, Point3D point, itk::Index<3> index, TimePointType time) |
| 81 | { |
| 82 | stream << "Position: <" << std::fixed << point[0] << ", " |
| 83 | << std::fixed << point[1] << ", " |
| 84 | << std::fixed << point[2] << "> mm; "; |
| 85 | |
| 86 | stream << "Index: <" << index[0] << ", " |
| 87 | << index[1] << ", " |
| 88 | << index[2] << "> ; "; |
| 89 | |
| 90 | stream << "Time: " << time << " ms"; |
| 91 | } |
| 92 | |
| 93 | void StatusBar::DisplayRendererInfo(Point3D point, TimePointType time) |
| 94 | { |