package xmp_parent;

public class Shape {
	private Point llc;

	public Shape(Point llc) { this.llc = llc; }
	// public Shape() { this.llc=null; }

	public void move(double xd, double yd) { llc=llc.move(xd,yd); }
	public Point getllc() { return llc; }
	public String toString() { return this.getClass().getSimpleName() + " @ " + llc ; }
}
