java-org.hwo.ui/src/org/hwo/ui/shapes/Rectangle.java

14 lines
287 B
Java

package org.hwo.ui.shapes;
import java.awt.Polygon;
public class Rectangle extends Polygon {
public Rectangle(int left,int top,int width,int height)
{
super(new int[]{left,left + width - 1,left + width - 1,left},new int[]{ top,top,top + height - 1,top + height - 1 },4);
}
}