xxxxxxxxxx
function setup(){
createCanvas(windowWidth,windowHeight);
background(18, 109, 255);
strokeWeight (99);
stroke(258,177, 18);
point(width/2,height/7);
}
function draw(){
strokeWeight (30);
stroke ('red')
point(width/3,height/2);
stroke(212,218,189,10)//colore contorno
line (width/7, height/23, width/2, height/5);
fill(100, 24, 93,124);
ellipse (mouseX,mouseY,121,155);
fill(52,143,18);//riempie il rettangolo
rect(21,40,63,160);
strokeWeight (1);
stroke (255,34,0,100);
fill(12,223,148,11)
line(mouseX,mouseY, 0,6);
stroke(132,158,239,100)
strokeWeight (2)
circle(mouseX,mouseY,32)
strokeWeight (10)
fill(40,50,200,60)
rect(mouseX,mouseY,100,200)
}