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