xxxxxxxxxx
89
function setup() {
createCanvas(280, 280);
//background(200);
frameRate(5);
let x = 0
let y = 0
// // for (x=5; x < width; x += 40) {
// // for (y = 15; y < height; y +=40) {
// // fill(random(255), random(255), random(255), random(255));
// // triangle(x,y,x-15,y +30,x +15,y +30);
// // }
// // }
for (x=5; x < width; x += 40) {
for (y = 15; y < height; y +=40) {
fill(random(255), random(255), random(255), random(255));
rect(x,y,random(80));
}
}
for (x=20; x < width; x += 40) {
for (y = 30; y < height; y +=40) {
fill(random(255), random(255), random(255), random(255));
ellipse(x,y,random(80));
}
}
// function mousePressed() {
// fill(random(255), random(255), random(255), random(255));
// ellipse(x,y,random(80));
}
function draw() {
if (mouseIsPressed === true) {
ellipse(random(255), random(255), random(255), random(255));
} else {
//ellipse(x,y,random(80));
}
}
// ellipse.move()
// let x = 0
// let y = 0
// // for (x=5; x < width; x += 40) {
// // for (y = 15; y < height; y +=40) {
// // fill(random(255), random(255), random(255), random(255));
// // triangle(x,y,x-15,y +30,x +15,y +30);
// // }
// // }
// for (x=5; x < width; x += 40) {
// for (y = 15; y < height; y +=40) {
// fill(random(255), random(255), random(255), random(255));
// rect(x,y,random(80));
// }
// }
// for (x=20; x < width; x += 40) {
// for (y = 30; y < height; y +=40) {
// fill(random(255), random(255), random(255), random(255));
// ellipse(x,y,random(80));
// }
// }
// }
// function mouseClicked() {
// if (dist,mouseX,mouseY,280,280) {
// }
// }