containsRectangle method
Returns true
if this rectangle contains the rectangle r
.
Implementation
bool containsRectangle(PRectangle r) => contains(r.x, r.y, r.width, r.height);
Returns true
if this rectangle contains the rectangle r
.
bool containsRectangle(PRectangle r) => contains(r.x, r.y, r.width, r.height);