------------------------------------------------------------------------------
| 65 | |
| 66 | //------------------------------------------------------------------------------ |
| 67 | vtkCornerAnnotation::~vtkCornerAnnotation() |
| 68 | { |
| 69 | this->SetTextProperty(nullptr); |
| 70 | |
| 71 | for (int i = 0; i < NumTextPositions; i++) |
| 72 | { |
| 73 | delete[] this->CornerText[i]; |
| 74 | this->TextMapper[i]->Delete(); |
| 75 | this->TextActor[i]->Delete(); |
| 76 | } |
| 77 | |
| 78 | this->SetWindowLevel(nullptr); |
| 79 | this->SetImageActor(nullptr); |
| 80 | } |
| 81 | |
| 82 | //------------------------------------------------------------------------------ |
| 83 | // Release any graphics resources that are being consumed by this actor. |
nothing calls this directly
no test coverage detected