xxxxxxxxxx
74
function setup() {
createCanvas(400, 400);
angleMode(DEGREES);
}
function draw() {
background(134, 179, 252);
translate(width / 2, height / 2)
//body
strokeWeight(8);
stroke(220);
noFill();
ellipse(0, 0, 350, 150);
strokeWeight(5);
stroke(80);
ellipse(-1, -3, 350, 150);
strokeWeight(6);
stroke(255);
noFill();
ellipse(2, -6, 350, 150);
//circular charm
noStroke();
fill(210);
circle(-60, 65, 50);
push();
rotate(15);
fill(150);
noStroke();
ellipse(-18, 78, 6, 18);
pop();
stroke(220);
strokeWeight(5);
line(-38, 75, -35, 75);
stroke(255);
strokeWeight(5);
line(-36, 67, -33, 67.5);
stroke(80);
strokeWeight(3);
line(-38, 71, -34, 71.5);
noStroke();
fill(255, 90);
circle(-67, 60, 35);
push();
rotate(110);
noStroke();
fill(255);
ellipse(70, 35, 27, 38);
pop();
//text
push();
blendMode(HARD_LIGHT);
rotate(10);
stroke(50, 50, 50, 100);
strokeWeight(1);
strokeJoin(ROUND);
fill(50, 50, 50, 100);
textFont('Courier New');
textSize(11);
text("FAMILY", -70, 80);
pop();
}