<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
public class Rectangle extends Shape {
	protected float width;
	protected float height;
	
	public Rectangle(float x, float y, float width, float height) {
		super(x,y);
		this.width  = width;
		this.height = height;
	}
}
</pre></body></html>