package methods;

class TestRectangle {

	public static void main(String args[]) {
			Rectangle box = new Rectangle(10,20,15,5);
			System.out.println("Box starts as: " + box );
			Rectangle.strans(box,3,4);
			System.out.println("After strans, box is: " + box);
			box.trans(4,5);
			System.out.println("After trans, box is: " + box);
			int boxArea = box.area();
			System.out.println("My box has area: " + boxArea);
			Rectangle obox = new Rectangle(10,10);
			System.out.println("obox is: " + obox);
	}
}