mouseX
GlobalThe x mouse coordinate
createWindow(400, 400);
function draw()
background(51);
line(mouseX, 0, mouseX, height);
end
mouseX
GlobalThe x mouse coordinate
createWindow(400, 400);
function draw()
background(51);
line(mouseX, 0, mouseX, height);
end