Skip to content

Instantly share code, notes, and snippets.

@kurochan
Created October 24, 2011 15:47
Show Gist options
  • Save kurochan/1309347 to your computer and use it in GitHub Desktop.
Save kurochan/1309347 to your computer and use it in GitHub Desktop.
eclipseでprocessingを扱う方法
import processing.core.PApplet;
public class ProcessingTest extends PApplet {
public void setup() {
super.init();
size(300, 300);
}
public void draw() {
super.draw();
}
static public void main(String args[]) {
PApplet.main(new String[] { "ProcessingTest" });
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment