(e)
| 101 | } |
| 102 | |
| 103 | callback (e) { |
| 104 | const x = Math.min(e.points[0].x, e.points[1].x) |
| 105 | const y = Math.min(e.points[0].y, e.points[1].y) |
| 106 | this.data.pos = { x, y, z: 0 } |
| 107 | this.data.width = Math.abs(e.points[0].x - e.points[1].x) |
| 108 | this.data.height = Math.min(e.points[0].y - e.points[1].y) |
| 109 | return this.refreshDisplay() |
| 110 | } |
| 111 | |
| 112 | createWorldBounds () {} |
| 113 | } |
nothing calls this directly
no outgoing calls
no test coverage detected