xxxxxxxxxx
16
let strawberry
function preload(){
strawberry = loadImage("Chocolate-Covered-Strawberries-Recipe_12.jpeg");
}
function setup() {
createCanvas(700, 700);
}
function draw() {
background(220);
image(strawberry, mouseX,mouseY);
strawberry.resize(500,500)
}