| 678 | } |
| 679 | |
| 680 | void Annotation::setBoundingRectangle(const NormalizedRect &rectangle) |
| 681 | { |
| 682 | Q_D(Annotation); |
| 683 | d->m_boundary = rectangle; |
| 684 | d->resetTransformation(); |
| 685 | if (d->m_page) { |
| 686 | d->transform(d->m_page->rotationMatrix()); |
| 687 | } |
| 688 | } |
| 689 | |
| 690 | NormalizedRect Annotation::boundingRectangle() const |
| 691 | { |
nothing calls this directly
no test coverage detected