xxxxxxxxxx
35
function setup() {
createCanvas(500, 500);
}
function draw() {
background("#7a7a7a");
//lines
ellipse(width / 2, (height / 8) * 2, (width / 32) * 15, (height / 32) * 14);
ellipse(width / 2, (height / 8) * 5, (width / 8) * 6, (height / 32) * 22);
arc(
(width / 8) * 7,
(height / 8) * 2,
(width / 8) * 2,
(height / 32) * 14,
PI + QUARTER_PI
);
//beginShape();
// curveVertex((width / 2) * 1, (height / 32) * 1);
//curveVertex((width / 2) * 1, (height / 32) * 1);
//curveVertex((width / 64) * 38, (height / 256) * 13);
//curveVertex((width / 16) * 11, (height / 8) * 1);
//curveVertex((width / 128) * 93, (height / 64) * 15);
//curveVertex((width / 128) * 94, (height / 64) * 26);
//curveVertex((width / 64) * 54, (height / 64) * 34);
//curveVertex((width / 64) * 56, (height / 8) * 5);
//curveVertex((width / 64) * 54, (height / 32) * 24);
//curveVertex((width / 64) * 51, (height / 64) * 53);
// curveVertex((width / 32) * 22, (height / 64) * 58);
//curveVertex((width / 2) * 1, (height / 32) * 31);
//curveVertex((width / 2) * 1, (height / 32) * 31);
//endShape();
}