package movingShapes;

public class Rectangle {

	private Point ll;
	private double width;
	private double height;

	public Rectangle(Point ll, double width, double height) {
		this.ll=ll;
		this.width=width;
		this.height=height;
	}

	public void move(double dx, double dy) {
		ll.move(dx,dy);
	}

	public String toString() {
		return "Rectangle @" + ll +" w=" + width + " h=" + height;
	}

}