xxxxxxxxxx
48
function setup() {
createCanvas(600, 600);
//noLoop();
}
function draw() {
background(0);
//top right//
rect(420,250,20,50);
rect(395,235,30,20);
rect(370,210,20,30);
rect(360,185,40,20);
//top left//
rect(185,250,20,50);
rect(200,235,30,20);
rect(225,210,20,30);
rect(238,185,45,20);
//bottom left//
rect(185,350,20,50);
rect(200,365,30,20);
rect(225,390,20,30);
rect(238,415,45,20);
//bottom right//
rect(365,415,45,20);
rect(378,390,20,30);
rect(403,365,30,20);
rect(420,350,20,50);
//this is the middle//
rectMode(CENTER);
noStroke(0)
rect(300,225,75,10);
rect(300,235,100,10);
rect(300,245,120,10);
rect(300,265,140,30);
rect(300,300,160,50);
rect(300,340,140,30);
rect(300,360,120,10);
rect(300,370,100,10);
rect(300,380,75,10);
//save('TheLetter0V2.png');
}