Removing Topics from SVN

This commit is contained in:
Casey Reas
2011-09-05 23:44:10 +00:00
parent b99624cdb4
commit 4fc6dcca86
219 changed files with 0 additions and 31091 deletions
@@ -1,17 +0,0 @@
/**
* Continuous Lines.
*
* Click and drag the mouse to draw a line.
*/
void setup() {
size(640, 200);
background(102);
}
void draw() {
stroke(255);
if(mousePressed) {
line(mouseX, mouseY, pmouseX, pmouseY);
}
}