xxxxxxxxxx
19
// TouchMoved (c) 2022, 2024 kouichi.matsuda@gmail.com
function setup() {
createCanvas(400, 400);
fill(0);
background(220);
document.addEventListener('gesturestart', function (e) {
e.preventDefault();
return false;
});
}
function draw() {
}
function touchMoved(){
ellipse(mouseX, mouseY, 20, 20);
return false;
}