// Tiling and image with padding in between // Currently drawing outside of window, will fix next lecture PImage img; int row = 4; int col = 3; int w, h; int padding = 10; void setup(){ size(700, 700); img = loadImage("tom-and-jerry.jpg"); w = width/col; h = height/row; for (int i=0; i