"Moving light - copie" - Processing

ID Autor Duplicat din Ultima modificare
#3973 Ilinca Sergiu (Ilinca_Sergiu) Moving light Miercuri, 15 iul 2020, 21:04
x
 
1
var ball = {
2
  x:300,
3
  y:200,
4
  xspeed:4,
5
  yspeed:-3
6
}
7
8
function setup() {
9
  createCanvas(400, 400);
10
}
11
12
function draw() {
13
  background("white");
14
    move();
15
    bounce();
16
    display();
17
  
18
}
Du-te sus!