| 21 | #include <vtkVectorText.h> |
| 22 | |
| 23 | mitk::TextAnnotation3D::TextAnnotation3D() |
| 24 | { |
| 25 | mitk::Point3D position; |
| 26 | position.Fill(0); |
| 27 | this->SetPosition3D(position); |
| 28 | this->SetOffsetVector(position); |
| 29 | this->SetText(""); |
| 30 | this->SetFontSize(20); |
| 31 | this->SetColor(1.0, 1.0, 1.0); |
| 32 | } |
| 33 | |
| 34 | mitk::TextAnnotation3D::~TextAnnotation3D() |
| 35 | { |
nothing calls this directly
no test coverage detected