xxxxxxxxxx
40
function setup() {
createCanvas(400, 500);
}
function draw() {
background(255);
noStroke();
//violet square
fill(125, 72, 180, 120);
rect(220, 0, 310,500);
//small square/circle
fill(255,230,10,90);
// rect(0, 400, 100, 100);
ellipse(0, 420, 100, 100);
//circle1
fill(125, 12, 10, 50);
ellipse(400, 0, 800,800);
//smallest circle
fill(125, 112, 90, 50);
ellipse(130, 380, 50, 50);
strokeWeight(4);
strokeJoin(ROUND);
stroke(0);
fill(17, 125, 122, 130);
line(60, 50, 60, 140);
line(60, 140, 100, 180);
curve(100, 180, 70, 290, 100, 180, 50, 300);
line(70, 290, 120, 305);
bezier(50, 160, 40, 280, 80, 230, 80, 180);
bezier(130, 190, 120, 305, 160, 305, 180, 200);
point(80,390);
noFill();
bezier(110, 310, 150, 350, 120, 420, 180, 420);
line(200, 415, 300, 350);
}