Uses of Class
rle.core.board.RLRectangle

Packages that use RLRectangle
rle.core.board   
rle.core.board.path   
rle.core.ui   
 

Uses of RLRectangle in rle.core.board
 

Fields in rle.core.board declared as RLRectangle
protected  RLRectangle Board.bounds
          We store the bounds instead of just the size because RLRectangle has some useful methods, especially contains().
 

Methods in rle.core.board that return RLRectangle
 RLRectangle Locator.bounds()
          Returns the bounding rectangle for this Locator.
 

Methods in rle.core.board with parameters of type RLRectangle
 int RLRectangle.distance(RLRectangle r)
           
 void Board.setBounds(RLRectangle r)
          Change the dimensions of this Board.
 

Constructors in rle.core.board with parameters of type RLRectangle
Locator(Board board, RLRectangle bounds)
           
Locator(Board board, RLRectangle bounds, java.util.HashMap<java.lang.String,java.lang.Object> attributes)
           
 

Uses of RLRectangle in rle.core.board.path
 

Methods in rle.core.board.path that return RLRectangle
 RLRectangle RectanglePath.bounds()
           
 RLRectangle CirclePath.center()
           
 

Methods in rle.core.board.path with parameters of type RLRectangle
static Path Path.fillCircle(RLRectangle ctr, int radius)
          Create a Path that fills a circular area outside a rectangular area.
static Path Path.fillRect(RLRectangle r)
          Create a Path that fills a rectangular area.
static Path Path.frameCircle(RLRectangle ctr, int radius)
          Create a Path that frames a circular area outside a rectangular area.
static Path Path.frameRect(RLRectangle r)
          Create a Path that frames a rectangular area.
 

Constructors in rle.core.board.path with parameters of type RLRectangle
CirclePath(RLRectangle r, int radius, boolean fill)
           
RectanglePath(RLRectangle r, boolean fill)
           
 

Uses of RLRectangle in rle.core.ui
 

Methods in rle.core.ui that return RLRectangle
 RLRectangle CameraModel.getBounds()
           
 RLRectangle CameraModelBase.getBounds()