Created
April 16, 2011 12:38
-
-
Save eskimoblood/923090 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package ${enclosing_package}; | |
import processing.core.*; | |
import processing.opengl.*; | |
import javax.media.opengl.GL; | |
public class ${primary_type_name} extends PApplet { | |
static public void main(String args[]) { | |
PApplet.main(new String[] { /* "--present", */ "${enclosing_package}.${primary_type_name}" }); | |
} | |
public void setup() { | |
size(500, 500, OPENGL); | |
} | |
public void draw() { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment