int B_SIZE = 6; int I_SIZE = 12; int MAP_ROW = 10; int MAP_COL = 10; String[] Balloons = new String[B_SIZE]; String[] Icons = new String[I_SIZE]; boolean[][] chinatown; int[][] icon, nyc; int WIDTH = 360; int HEIGHT = 360; void setup() { size(WIDTH, HEIGHT); background(255); frameRate(24); smooth(); noStroke(); fill(0,0,0); chinatown = new boolean[MAP_ROW][MAP_COL]; icon = new int[MAP_ROW][MAP_COL]; nyc = new int[MAP_ROW][MAP_COL]; for(int i=0;i