xxxxxxxxxx
32
function setup() {
createCanvas(600, 600);
background(2550);
}
function draw() {
push();
scale(1.4);
arc(70, 25, 100, 100, 0, PI);
ellipse(200, 50, 100, 55);
circle(320, 50, 55);
line(375, 25, 400, 75);
strokeWeight(4);
point(410, 50);
strokeWeight(1);
quad(38, 100, 86, 100, 69, 120, 30, 200);
pop();
rect(450, 200, 130, 350);
push();
translate(100,320);
scale(3);
strokeWeight(1/3);
triangle(30, 75, 58, 20, 86, 75);
pop();
push();
translate(20,100);
scale(4);
strokeWeight(1/3.5);
bezier(85, 20, 10, 10, 90, 90, 15, 80);
pop();
}