xxxxxxxxxx
42
//////////
function setup() {
createCanvas(400, 400);
}
function draw() {
if(mouseX > width/2){
background(190,0,255);
}else{
background(255,0,0);
}
}
//////////
var x = 0;
function setup() {
createCanvas(400, 400);
}
function draw() {
background(255);
x = x +1;
if (x > width){
x = -1;
}
ellipse(x, 100,20,20);
}
////////
// function setup() {
// createCanvas(400, 400);
// }
// function draw() {
// background(220);
// for(var i = 0 ; i < 100; i++){
// ellipse(i*10,100,20,20);
// }
// }