xxxxxxxxxx
16
function setup() {
createCanvas(400, 400);
background(255);
stroke(0);
strokeWeight(2);
noFill();
circle(100,100,50); // head of the stickman
line(100,125,100, 200); // body of the stickman
line(50, 150, 150, 150); // arms of the stickman
line(100, 200, 50, 250); // left leg of the stickman
line(100, 200, 150, 250); // right leg of the stickman
}
// function draw() {
// background(220);
// }