xxxxxxxxxx
37
let ballen = [];
function setup() {
createCanvas(400, 400);
}
function draw() {
background("pink");
fill("salmon")
stroke("maroon")
for(let i=0;i<ballen.length;i++){
let bal = ballen[i];
bal.xsnelheid = bal.xsnelheid * 0.99;
bal.x = bal.x + bal.xsnelheid;
if(bal.y + bal.ysnelheid < height - bal.radius/2){
bal.ysnelheid = bal.ysnelheid + 1;
}
else{
bal.ysnelheid = bal.ysnelheid * -1;
}
bal.y = bal.y + bal.ysnelheid;
circle(bal.x,bal.y,bal.radius);
}
}
function mouseClicked(){
ballen.push({
x: mouseX,
y: mouseY,
radius: random()*50,
xsnelheid: mouseX-pmouseX,
ysnelheid: mouseY-pmouseY
})
}