/* 6.914, Example 0.3 The "point" command will draw a point at the (x,y) coordinates you give it. Use this format: point(x,y); The "line" command will draw a line from (x1, y1) to (x2, y2). Use this format: line(x1, y1, x2, y2); Use "point" and "line" in the draw() method. */ void setup(){ size(500, 300); // window is 500 in width, 300 in height. background(255, 255, 255); // white background } void draw(){ // the stroke color is black by default. point(50, 100); point(50, 200); point(75, 200); //line(50, 100, 50, 200); //line(50, 200, 75, 200); //line(75, 200, 50, 100); }