xxxxxxxxxx
17
let img;
function preload() {
img = loadImage('Headbang_dans_la_cuisine.jpeg');
}
function setup() {
createCanvas(windowWidth, windowHeight);
imageMode(CENTER);
background("white");
}
function draw() {
image(img, mouseX, mouseY);
}