xxxxxxxxxx
45
function setup() {
createCanvas(600, 600);
}
/*let count =0;
function mousePressed() {
save('pattern-variation-' + count + '.jpg');
count++;
}
*/
function draw() {
background(220);
for (let x = 0; x <= width; x += 25) {
//let r = map(x, 0, width, 0, 255);
//color
let r = random(50);
let g = random(100, 255);
let b = random(255);
//size
let s = random(25, 80)
//position
let y = random(height)
fill(r, g, b);
square(x, y, s);
fill(r, g, b);
square(x, y, s);
fill(r, g, b);
ellipse(x, y, s);
}
noLoop();
}