default.txt 313 B

1234567891011121314151617
  1. import java.util.LinkedList;
  2. import java.awt.Point;
  3. PGraphics pg;
  4. String load;
  5. void setup() {
  6. size(displayWidth, displayHeight, P3D);
  7. pg = createGraphics(displayWidth*2,displayHeight,P2D);
  8. pg.beginDraw();
  9. pg.background(255,255,255);
  10. //pg.smooth(8);
  11. pg.endDraw();
  12. }
  13. void draw(){
  14. background(255);
  15. }