-
Notifications
You must be signed in to change notification settings - Fork 0
P5 Mouse
Aaron Echler edited this page Feb 18, 2024
·
1 revision
This shows an example of a mouse interacting with the p5.js canvas
Source tutorial: https://youtu.be/7A5tKW9HGoM?si=rGDsBr_iO_qkcXgP
function setup() {
createCanvas(400, 400);
background(0);
}
function draw(){
noStroke();
fill(255);
circle(mouseX, mouseY, 24);
}
Clear the canvas on mouse press.
function setup() {
createCanvas(400, 400);
background(0);
}
function draw(){
noStroke();
fill(255);
circle(mouseX, mouseY, 24);
}
// Clear the canvas
function mousePressed(){
background(0);
}