Uses of Class
jaron.gui.Rect

Packages that use Rect
jaron.gui Provides the classes that support a GUI independent implementation of visual components. 
jaron.pde Provides GUI components for the Processing Development Environment (PDE). 
 

Uses of Rect in jaron.gui
 

Subclasses of Rect in jaron.gui
 class ActuatorXY
          The ActuatorXY class is a generic GUI control that provides the functionality to implement a component with an x- and a y-axis (e.g. a joystick).
 

Fields in jaron.gui declared as Rect
 Rect Panel.content
          A Rect that encloses the panel's content.
 Rect ActuatorXY.control
           
 Rect Panel.frame
          A Rect that represents the panel's frame.
 Rect Panel.labelBottom
          A Rect that encloses the panel's bottom label.
 Rect Panel.labelLeft
          A Rect that encloses the panel's left label.
 Rect Panel.labelRight
          A Rect that encloses the panel's right label.
 Rect Panel.labelTop
          A Rect that encloses the panel's top label.
 

Methods in jaron.gui that return Rect
 Rect Rect.createIntersection(Rect rect)
          Computes the intersection of this Rectangle with the specified Rect.
 Rect Panel.getContent()
          Returns the panels content Rect.
 Rect Panel.getFrame()
          Returns the panels frame Rect.
 Rect Panel.getLabelBottom()
          Returns the panels bottom label Rect.
 Rect Panel.getLabelLeft()
          Returns the panels left label Rect.
 Rect Panel.getLabelRight()
          Returns the panels right label Rect.
 Rect Panel.getLabelTop()
          Returns the panels top label Rect.
 

Methods in jaron.gui with parameters of type Rect
 Rect Rect.createIntersection(Rect rect)
          Computes the intersection of this Rectangle with the specified Rect.
 void Panel.setContent(Rect content)
          Sets a new content Rect for this panel.
 void Panel.setFrame(Rect frame)
          Sets a new frame Rect for this panel.
 

Uses of Rect in jaron.pde
 

Subclasses of Rect in jaron.pde
 class Joystick
          The Joystick class provides a virtual joystick for the Processing Development Environment (PDE).
 class Slider
          The Slider class provides a virtual slider for the Processing Development Environment (PDE).