michael haynes

/**  * Continuous Lines.  *  * Click and drag the mouse to draw a line.  */

void setup() {   size(640, 360);   background(102); }

void draw() {   stroke(255);   if(mousePressed) {

line(mouseX, mouseY, pmouseX, pmouseY);

}

}

This entry was posted in Uncategorized. Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *