xxxxxxxxxx
20
function setup() {
createCanvas(800, 600); // create a canvas, good job Jean!
background("white"); // set the color of that canvas
}
function draw() {
stroke('black'); // outline color
strokeWeight(4); // outline thickness
fill('orange'); // setting the color
ellipse(mouseX, mouseY, 10, 20); // ellipse(x, y, w, h);
rect(mouseX, mouseY, 10, 10);
}