//Section 5 Part 1 - Extended Graph //By - Jeff John Sunil size(300,300); background(255); float scale = width/10; float graphWidth = width - scale - scale; float numRect = 10; for(float num = 0; num < numRect; num++){ }; for(float y = scale; y < height - scale; y += graphWidth/numRect) { //Grid Creator for(float x = scale; x < height - scale; x += graphWidth/numRect) { fill(200); rect(x, y, graphWidth/numRect, graphWidth/numRect); } }