I made the zapp of the example 'cut and paste'
so this is the result
dutch version
ipad
I made the zapp of the example 'cut and paste'
so this is the result
dutch version
ipad
This fixes the selection issue:
let a = Math.min(selectX, frame.mouseX);
let b = Math.max(selectX, frame.mouseX);
let c = Math.min(selectY, frame.mouseY);
let d = Math.max(selectY, frame.mouseY);
sel = [a, c, b-a, d-c];
thanks
it work now