"Moving light - copie - copie" - Processing

ID Autor Duplicat din Ultima modificare
#4107 Yanis Popescu (Popescu_Yanis_7) Moving light - copie Duminica, 08 nov 2020, 11:05
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!