Uses of Class
t3.hrd.state.Tile

Packages that use Tile
t3.hrd.renderer   
t3.hrd.state   
t3.remotehrd.server   
 

Uses of Tile in t3.hrd.renderer
 

Fields in t3.hrd.renderer with type parameters of type Tile
 java.util.Set<Tile> Projector.tilesVisibleInThisProjectorsDeskSpaceImmutable
           
 

Uses of Tile in t3.hrd.state
 

Methods in t3.hrd.state that return Tile
protected  Tile StateManager.factoryReturnNewTileObject(StateListener tilesListener, int tileId, int w, int h, int flags, boolean usePowersOfTwo)
           
 Tile[][] Tile.getSplitComponentsPackedByColForReadOnly()
          For a split tile, this returns its component backed Tiles, packed by column.
 Tile StateManager.getTileByIdForOp(int id)
           
 Tile StateManager.opCreateTile(int elId, int w, int h, int flags)
          Creates a new Tile.
 Tile StateManager.opCreateTileAutogenerateId(int w, int h, int flags)
           
 

Methods in t3.hrd.state with parameters of type Tile
 void StateListener.callback_createdTile(Tile tile, int w, int h, int flags)
           
 void StateListener.callback_createdUnwarpedRect(Tile tile, UnwarpedRect r)
           
 void StateListener.callback_destroyedTile(Tile tile)
           
 void StateListener.callback_destroyedUnwarpedRectsIntersecting(Tile tile, java.awt.Rectangle r)
           
 void StateListener.callback_repaintUnbackedTile(Tile tile, java.awt.Rectangle r, java.awt.image.BufferedImage update, java.awt.Graphics2D g)
           
 void StateListener.callback_updatedTileAff(Tile t, double DESKcentreX, double DESKcentreY, double DESKwidth, double DESKheight, double thetaClockwise)
           
 void StateListener.callback_updatedTileContents(Tile tile, int x, int y, java.awt.image.BufferedImage update, int compressionHint)
           
 void StateListener.callback_updatedTileContentsByCopyingFromOtherTile(Tile tile, int sx, int sy, int dx, int dy, int w, int h, Tile source)
           
 void StateListener.callback_updatedTileVisibility(Tile tile, boolean v)
           
 void StateManager.opDestroyTile(Tile t)
           
 void Tile.opUpdateContentsByCopyingFromOtherTile(int sx, int sy, int dx, int dy, int w, int h, Tile source)
          Updates the contents of this tile by copying data from another tile.
 

Uses of Tile in t3.remotehrd.server
 

Methods in t3.remotehrd.server with parameters of type Tile
 void RemoteHRDServerCallBacks.remoteServerCallBack_repaintUnbackedTile(Tile tile, java.awt.Rectangle r, java.awt.image.BufferedImage update, java.awt.Graphics2D g)