NTU-OOP-Tuts-2025-1/T5Q3/src/Rectangle.java

11 lines
283 B
Java

public class Rectangle extends Polygon {
public Rectangle(String theName, float theWidth, float theHeight) {
super(theName, theWidth, theHeight) ;
this.polytype = KindofPolygon.POLY_RECT;
}
public float calArea() {
return width * height;
}
}