All you need to do is:
- create a project to work on
- add the processing core.jar to the project classpath by selecting it, from the downloaded processing directory, in the project's properties
- create a class that extends processing.core.PApplet
import processing.core.PApplet;
public class Main extends PApplet{
public void setup() {
size(200,200);
background(0);
}
public void draw() {
}
1 comment:
Curious I found I also needed to have a main method with netbeans to get my code to run.
Post a Comment