xxxxxxxxxx
21
var x = 0;
var y = 0;
var speed = 10;
function setup() {
createCanvas(400, 400); }
function draw() {
background(255,255,255);
stroke(50); noFill();
fill(255,0,210);
ellipse(200, y, 50, 50);
if(y < 0 || y > height ){
speed = speed * - 1 // -1 * 4 coverts -4 and 4
}
y = y + speed;
// console.log(y);
}