Lines Matching refs:tileWidth
909 - public static final int tileWidth = 25;
925 - maxI = (int) Math.ceil(area.getWidth() / tileWidth);
926 - maxJ = (int) Math.ceil(area.getHeight() / tileWidth);
928 - tiles = new int[maxI][maxJ][tileWidth * tileWidth];
971 …ufferedImage bufferedImage = capture.getSubimage(i * tileWidth, j * tileWidth, tileWidth, tileWidt…
973 - int pixels[] = new int[tileWidth * tileWidth];
975 …ixelGrabber pg = new PixelGrabber(bufferedImage, 0, 0, tileWidth, tileWidth, pixels, 0, tileWidth);
1625 - private static final int tileWidth = ImageTransmitter.tileWidth;
1728 - //repaint(x * tileWidth, y * tileWidth, tileWidth, tileWidth);
1729 - this.getGraphics().drawImage(bufferedImage, tileWidth * x, tileWidth * y, this);
1735 - g.drawImage(tiles[i][j], tileWidth * i, tileWidth * j, this);