containsRectangle 方法
检查当前对象是否完全包含另一个矩形。
实现
bool containsRectangle(Rectangle<num> another) {
return left <= another.left &&
left + width >= another.left + another.width &&
top <= another.top &&
top + height >= another.top + another.height;
}