xxxxxxxxxx
133
function setup() {
createCanvas(1000, 1000);
}
function draw() {
background(56, 18, 136);
//hair frizz
// colour
noFill();
strokeWeight(1);
stroke(248, 137, 74);
//shape
circle(465, 142, 73);
circle(688, 284, 73);
circle(761, 602, 73);
circle(240, 664, 73);
circle(259, 512, 107);
circle(309, 284, 107);
//back hair
// colour
noStroke();
fill(10, 19, 34)
//shape
circle(298, 689, 173);
circle(352, 577, 173);
circle(395, 642, 173);
circle(648, 587, 173);
circle(645, 731, 173);
circle(593.7, 700.6, 173);
//face
// colour
noStroke();
fill(240, 61, 7);
//shape
rect(352, 234, 288, 356, 140);
//body
// colour
noStroke();
fill(0);
//shape
rect(268, 682, 463, 317, 250, 250, 0, 0);
//eyeball
// #1
fill(255);
circle(493.6, 400.5, 177);
// #2
fill(164, 135, 189);
circle(480.8, 384.3, 130);
// #3
fill(0);
circle(472.8, 375, 51);
// #4
fill(255);
circle(500.5, 365.4, 19.5);
// #5
fill(164, 135, 189);
circle(495.8, 380.2, 14.6);
//viens
stroke(240, 61, 7);
strokeWeight(2);
noFill();
line(431.5, 421.5, 438.5, 449.5);
line(438.5, 449.5, 438.35, 469.6);
line(485.5, 427.5, 485.5, 444.5);
line(485.5, 444.5, 505.5, 463.5);
line(505.5, 463.5, 521.5, 458.5);
line(521.5, 458.5, 529.5, 452.5);
line(505.5, 463.5, 460.5, 458.5);
line(521.5, 458.5, 537.5, 477.4);
line(573.7, 442.2, 567, 390);
line(550, 412, 569.6, 409);
//eyelid
// colour
noStroke();
fill(240, 61, 7);
//shape
quad(400, 466, 594, 480, 529, 548, 400, 526.9);
//collar
// colour
noStroke();
fill(0);
//shape
ellipse(495.3, 556.5, 231.5, 132);
quad(379.4, 556, 611, 556, 554.8, 706, 438.3, 706);
//front hair
// colour
noStroke();
fill(10, 19, 34)
//shape
circle(710, 641.6, 169);
circle(710, 491, 179);
circle(672, 373, 179);
circle(616, 273.5, 189);
circle(518.8, 198, 211);
circle(379.4, 210.4, 173);
circle(352, 303, 173);
circle(308.8, 426.3, 173);
circle(265.6, 563.7, 173);
}