moving examples to hang out with their libraries

This commit is contained in:
benfry
2011-01-26 19:43:04 +00:00
parent ce5fd461f5
commit a53f278863
81 changed files with 0 additions and 0 deletions
@@ -0,0 +1,23 @@
/**
* One Frame.
*
* Saves one PDF with the contents of the display window.
* Because this example uses beginRecord, the image is shown
* on the display window and is saved to the file.
*/
import processing.pdf.*;
size(600, 600);
beginRecord(PDF, "line.pdf");
background(255);
stroke(0, 20);
strokeWeight(20.0);
line(200, 0, 400, height);
endRecord();