| 378 | return Vec(getLeft(), getBottom()); |
| 379 | } |
| 380 | Vec getBottomRight() const { |
| 381 | return Vec(getRight(), getBottom()); |
| 382 | } |
| 383 | /** Clamps the edges of the rectangle to fit within a bound. */ |
| 384 | Rect clamp(Rect bound) const { |
| 385 | Rect r; |
no test coverage detected