martes, 9 de noviembre de 2021

P5JS Mover un cirsulo hacia arriba con una pequeña vibracion

 




P5JS Mover un cirsulo hacia arriba con una pequeña vibracion

https://p5js.org/es/examples/hello-p5-animation.html


// posición del círculo

let x, y;


function setup() {

  createCanvas(720, 400);

  // empieza en el centro

  x = width / 2;

  y = height;

}


function draw() {

  background(200);


  // dibujar el círculo

  stroke(50);

  fill(100);

  ellipse(x, y, 24, 24);


  // moverse aleatoriamente en el eje x

  x = x + random(-1, 1);

  // mover hacia arriba a velocidad constante

  y = y - 1;


  // reset al fondo

  if (y < 0) {

    y = height;

  }

}




No hay comentarios:

Publicar un comentario