【Processing】ドット絵をかくやつ

int[] rectX = new int[10]; //配列、xの数値に使います int[] rectY = new int[10]; //配列、yの数値に使います color[][] c = new color[10][10]; //二次元配列 void setup() { size(500, 500); background(200); noStroke(); for (int x = 0; x < 10; x++) { for (int y = 0; y <10; y++) { rectX[x] = x*50 + 25; //fo…