Uses of Class
org.jtgl.core.JTGLRect

Packages that use JTGLRect
org.jtgl.core   
org.jtgl.gaming   
 

Uses of JTGLRect in org.jtgl.core
 

Methods in org.jtgl.core that return JTGLRect
 JTGLRect JTGLRect.addDimension(int factor)
           
 JTGLRect JTGLRect.addDimension(int w, int h)
           
abstract  JTGLRect JTGLGraphics.getClip()
           
 JTGLRect JTGLRect.getClone()
           
static JTGLRect JTGLRect.intersection(int r1x, int r1y, int r1width, int r1height, int r2x, int r2y, int r2width, int r2height)
           
static JTGLRect JTGLRect.intersection(int r1x, int r1y, int r1width, int r1height, int r2x, int r2y, int r2width, int r2height, JTGLRect result)
           
 JTGLRect JTGLRect.intersection(JTGLRect r)
          Computes the intersection of this JTGLRect with the specified Rectangle.
 JTGLRect JTGLRect.mulDimension(int factor)
           
 JTGLRect JTGLRect.mulDimension(int w, int h)
           
 JTGLRect JTGLGraphics.setClip(int x, int y, int width, int height)
           
 JTGLRect JTGLGraphics.setClip(int x, int y, int width, int height, boolean updateInternal)
           
 JTGLRect JTGLGraphics.setClip(JTGLRect clip)
           
 JTGLRect JTGLRect.union(JTGLRect r)
          Computes the union of this JTGLRect with the specified JTGLRect.
 

Methods in org.jtgl.core with parameters of type JTGLRect
 void JTGLRect.center(JTGLRect container)
           
 void JTGLGraphics.clear(JTGLRect rect)
           
 void JTGLGraphics.clear(JTGLRect rect, JTGLColor color)
           
 void JTGLRect.copy(JTGLRect from)
           
 void JTGLGraphics.drawRect(JTGLRect rect)
           
 void JTGLGraphics.drawRect(JTGLRect rect, JTGLColor color)
           
 void JTGLGraphics.fillRect(JTGLRect rect)
           
 void JTGLGraphics.fillRect(JTGLRect rect, JTGLColor color)
           
static JTGLRect JTGLRect.intersection(int r1x, int r1y, int r1width, int r1height, int r2x, int r2y, int r2width, int r2height, JTGLRect result)
           
 JTGLRect JTGLRect.intersection(JTGLRect r)
          Computes the intersection of this JTGLRect with the specified Rectangle.
 boolean JTGLRect.intersects(JTGLRect r)
           
 JTGLRect JTGLGraphics.setClip(JTGLRect clip)
           
 JTGLRect JTGLRect.union(JTGLRect r)
          Computes the union of this JTGLRect with the specified JTGLRect.
 

Constructors in org.jtgl.core with parameters of type JTGLRect
JTGLRect(JTGLRect rect)
           
 

Uses of JTGLRect in org.jtgl.gaming
 

Methods in org.jtgl.gaming that return JTGLRect
 JTGLRect Sprite.getAbsCollisionRectangle()
           
 JTGLRect Surface.getBounds()
           
 JTGLRect Sprite.getCollisionRectangle()
           
 JTGLRect Sprite.getLastCollidedRect()
           
 

Methods in org.jtgl.gaming with parameters of type JTGLRect
 boolean Sprite.collidesAtWith(int tx, int ty, JTGLRect rect)
           
 boolean Sprite.collidesAtWithBounds(int tx, int ty, JTGLRect rect)
           
 boolean Sprite.collidesWith(JTGLRect rect)
           
 boolean Sprite.collidesWithBounds(JTGLRect rect)
           
 boolean Sprite.preCollidesWithBounds(JTGLRect rect)
           
 

Constructors in org.jtgl.gaming with parameters of type JTGLRect
RectSurface(JTGLRect rect)
           
RectSurface(JTGLRect rect, JTGLColor color)