xxxxxxxxxx
29
function setup() {
createCanvas(200,200);
let foo = 90;
//background
background(foo);
//draw circle in green
fill(128, 128, 0);
circle(100, 100, 30);
//draw square in purple
fill(200,0,200);
square (80, 30, 40);
//draw rect in yalloish
fill(255, 165, 0);
rect(25,70, 30, 80);
//draw ellipse in purple
fill(200, 200, 255);
ellipse(100,150,50,70);
//order is impo
}
//function draw(){ print(mouseX + "," + mouseY);}