xxxxxxxxxx
31
var waist;
var c = [];
function setup() {
createCanvas(600, 600);
c = [color(255, 221, 166), color(255, 221, 166), color(191, 147, 77), color(156, 114, 48), color(117, 82, 26), color(79, 53, 12), color(46, 30, 4)];
}
function draw() {
background(255);
noLoop();
var waist = random(200,400);
var torso = random(300, 600);
fill(random(c));
rectMode(CENTER);
rect(300, 0, waist, torso);
noStroke();
rect(300-waist/4, torso, waist/3, height);
rect(300+waist/4, torso, waist/3, height);
stroke(color(92, 36, 4));
var rand = random(2,4);
arc(300-waist/4, torso/2-2, waist/2, torso/rand, 0, radians(180));
arc(300+waist/4, torso/2-2, waist/2, torso/rand, 0, radians(180));
}