| 178 | } |
| 179 | |
| 180 | constexpr Rect makeOffset(Scalar dx, Scalar dy) const { |
| 181 | return Rect::makeLTRB(left + dx, top + dy, right + dx, bottom + dy); |
| 182 | } |
| 183 | |
| 184 | constexpr void offsetX(Scalar dx) { |
| 185 | left += dx; |
no outgoing calls
no test coverage detected