q5play
    Preparing search index...

    Variable touches

    touches: any[]

    🖲 Array containing all current touch points within the browser window. Each touch being an object with id, x, and y properties.

    Consider using the pointers array instead, which includes mouse, touch, and pen input.

    q5.draw = function () {
    background(0.8);
    for (let pt of pointers) {
    circle(pt.x, pt.y, 100);
    }
    };