()
| 135 | return this.rects.fromDOM(pageElem.getBoundingClientRect()); |
| 136 | } |
| 137 | getContainerWorldRect() { |
| 138 | const containerClientRect = this.getContainerClientRect(); |
| 139 | |
| 140 | if (containerClientRect == null) { |
| 141 | return; |
| 142 | } |
| 143 | |
| 144 | return this.rects.clientToWorld(containerClientRect); |
| 145 | } |
| 146 | |
| 147 | getOriginClientPos() { |
| 148 | const originElem = document.querySelector( |
nothing calls this directly
no test coverage detected