()
| 151 | } |
| 152 | |
| 153 | adjustPosition() { |
| 154 | if (!this.shown) { |
| 155 | return; |
| 156 | } |
| 157 | const ratio = this.getScale(); |
| 158 | this.setLeft(this.area.topl[0] * ratio); |
| 159 | this.setTop(this.area.topl[1] * ratio); |
| 160 | this.setRight(0); |
| 161 | this.setRight(this.canvas.clientWidth - (this.area.bottoml[0] * ratio)); |
| 162 | this.setBottom(this.canvas.clientHeight - (this.area.bottoml[1] * ratio)); |
| 163 | } |
| 164 | |
| 165 | placeAt(l, t, r, b, img) { |
| 166 |