* The right edge of the rectangle.
()
| 50 | * The right edge of the rectangle. |
| 51 | */ |
| 52 | get right(): number { |
| 53 | return this.width < 0 ? this.x : this.x + this.width; |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * The bottom edge of the rectangle. |
nothing calls this directly
no outgoing calls
no test coverage detected