| 16 | #include <vtkTextProperty.h> |
| 17 | |
| 18 | mitk::TextAnnotation2D::TextAnnotation2D() |
| 19 | { |
| 20 | mitk::Point2D position; |
| 21 | position[0] = position[1] = 0; |
| 22 | this->SetPosition2D(position); |
| 23 | this->SetOffsetVector(position); |
| 24 | this->SetText(""); |
| 25 | this->SetFontSize(20); |
| 26 | this->SetColor(1.0, 1.0, 1.0); |
| 27 | this->SetStringProperty("font.family", "Arial"); |
| 28 | this->SetBoolProperty("font.bold", false); |
| 29 | this->SetBoolProperty("font.italic", false); |
| 30 | this->SetBoolProperty("drawShadow", false); |
| 31 | } |
| 32 | |
| 33 | mitk::TextAnnotation2D::~TextAnnotation2D() |
| 34 | { |
nothing calls this directly
no test coverage detected