xxxxxxxxxx
var imgagee;
function preload() {
imgagee = loadImage("cat.jpg");
}
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
}
function draw() {
imageMode(CENTER);
image(imgagee, mouseX, mouseY, 200, 200);
}