blob: 66524b2945f1a42296abd14e5bd421cbe2f6d42a [file] [log] [blame]
package p;
public class Shape {
Rectangle fBounds;
Rectangle fInnerBounds;
public int area() {
return fBounds.area();
}
public int filledArea() {
return area() - fInnerBounds.getWidth() * fInnerBounds.getHeight();
}
public boolean isSmallerThan(Rectangle rect) {
return area() < rect.getWidth() * rect.getHeight();
}
}