xxxxxxxxxx
16
function setup() {
createCanvas(windowWidth,
windowHeight);
pen = new Pen(width/2,
height/2);
background("purple");
strokeWeight(10);
stroke("yellow");
for(var x=0; x<32; x=x+1){
pen.moveForward(25);
pen.turnRight(10);
}
}