waba.fx
Class Rect

waba.lang.Object
  |
  +--waba.fx.Rect

public class Rect
extends Object

Rect is a rectangle.


Field Summary
 int height
          rectangle height
 int width
          rectangle width
 int x
          x position
 int y
          y position
 
Constructor Summary
Rect(int x, int y, int width, int height)
          Constructs a rectangle with the given x, y, width and height.
 
Methods inherited from class waba.lang.Object
toString
 

Field Detail

x

public int x
x position

y

public int y
y position

width

public int width
rectangle width

height

public int height
rectangle height
Constructor Detail

Rect

public Rect(int x,
            int y,
            int width,
            int height)
Constructs a rectangle with the given x, y, width and height.