xxxxxxxxxx
34
function setup() {
createCanvas(1920, 1080);
background(255)
}
function draw() {
//body
rect(5,5, 1910, 1070);
//imageplane
rect(5, 75, 1915, 300);
line(5,75, 1915, 375);
line(5,375, 1915, 75);
//nav bars
line(200, 5, 200, 75);
line(400, 5, 400, 75);
line(600, 5, 600, 75);
line(800, 5, 800, 75);
line(1000, 5, 1000, 75);
// text need to fifure out how to apply hte stroke weight only to this would probably be best used as a funciotn
//strokeWeight(10);
line (1920/ 3, 450, 1920/3 +500, 450);
line (1920/ 3+50 , 500, 1920/3 +450, 500);
line (1920/ 3+50 , 550, 1920/3 +450, 550);
line (1920/ 3+50 , 600, 1920/3 +450, 600);
}