La función touchEnded() en p5.js se llama cuando finaliza un toque. Si no se define ninguna función touchEnded (), en su lugar se llamará a la función mouseReleased() si está definida.
Sintaxis:
touchEnded([Event])
El siguiente programa ilustra la función touchEnded() en p5.js:
Ejemplo-1:
let valueX; let valueY; function setup() { // Create Canvas of size 500*500 createCanvas(500, 500); } function draw() { // set background color background(200); fill('green'); // set text and text size textSize(25); text('Touch to change color', 30, 30); // fill color according to touchEnded() fill(valueX, 255 - valueY, 255 - valueX); // draw ellipse ellipse(mouseX, mouseY, 115, 115); } function touchEnded() { valueX = mouseX % 255; valueY = mouseY % 255; }
Producción:
Ejemplo-2:
let valueX; let valueY; function setup() { // Create Canvas of size 500*500 createCanvas(500, 500); } function draw() { // set background color background(200); fill('green'); // set text and text size textSize(25); text('Touch and Move to change color', 30, 30); // fill color according to touchEnded() fill(valueX, 255 - valueY, 255 - valueX); // draw rectangle rect(mouseX, mouseY, 115, 115); fill(valueY, 255 - valueX, 255 - valueX); rect(mouseX, mouseY + 115, 115, 115); fill(255 - valueY, 255 - valueX, 255 - valueY); rect(mouseX - 115, mouseY, 115, 115); fill(255 - valueY, 255 - valueY, 255 - valueY); rect(mouseX - 115, mouseY + 115, 115, 115); } function touchEnded() { valueX = mouseX % 255; valueY = mouseY % 255; }
Salida:
Referencia: https://p5js.org/reference/#/p5/touchEnded
Publicación traducida automáticamente
Artículo escrito por sarthak_ishu11 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA