utils
Class Rectangle

java.lang.Object
  extended by utils.Rectangle

public class Rectangle
extends java.lang.Object

a rectangle


Field Summary
 int xmax
           
 int xmin
           
 int ymax
           
 int ymin
           
 
Constructor Summary
Rectangle(int xmin, int ymin, int xmax, int ymax)
          constructor
 
Method Summary
 void set(Rectangle rect)
          sets the rectangle from another rectangle
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

xmin

public int xmin

ymin

public int ymin

xmax

public int xmax

ymax

public int ymax
Constructor Detail

Rectangle

public Rectangle(int xmin,
                 int ymin,
                 int xmax,
                 int ymax)
constructor

Parameters:
xmin -
ymin -
xmax -
ymax -
Method Detail

set

public void set(Rectangle rect)
sets the rectangle from another rectangle

Parameters:
rect -