xxxxxxxxxx
22
// Laddie John Dill Speaks About His Work
// https://youtu.be/z7EnGCaBTEk
function preload(){
}
function setup() {
createCanvas(400, 400);
background(0);
for (let j=0;j<15;j++){
for (let i = 0; i < 10; i++) {
noStroke();
fill(random([ "#E63A29", "#F3FE88","pink","#0BFCA5","white"]));
rect(i * 40, j*30-i*5, 40, 10);
}
}
}
function draw() {
}