/* By nature this assignment asks the question what is percieved as a line and what 
   is percieved as a dot. It seems that any open shape of constant width (even if it 
   is not continious or straight) can be seen as a line. A dot seems to be simply a point
   or any closed shape filled with a color (if it is simply a closed outline then it appears to be
   first a circle/square and then perhaps a dot). Does a dot have to be a circle - no. A pixel
   is a dot and it is square. Thus for this piece I will attempt to create a dot and a line using
   only point function. A repetition of points a line and a group of points as a dot. */

size(400,400);
background(45);

stroke(120);

for(int i=1; i<100; i++) {
  int x = 50+i;
  int y = 50+3*i;
  point(x,y);
  }

for(int y=0; y<4; y++) {
  for(int x=0; x<4; x++) {
      point(140+x,134+y);
    }
  }
Exercise 01: Draw one line and one dot. Set the relation between them and the frame based on an idea. Explain this idea as a comment at the top of your code.