------------------------------------------------------------------------------
| 729 | |
| 730 | //------------------------------------------------------------------------------ |
| 731 | void vtkCornerAnnotation::CopyAllTextsFrom(vtkCornerAnnotation* ca) |
| 732 | { |
| 733 | for (int i = 0; i < NumTextPositions; i++) |
| 734 | { |
| 735 | this->SetText(i, ca->GetText(i)); |
| 736 | } |
| 737 | } |
| 738 | |
| 739 | //------------------------------------------------------------------------------ |
| 740 | std::vector<std::string> vtkCornerAnnotation::GetAllTexts() const |