Skip to content

Instantly share code, notes, and snippets.

@getflourish
Created July 5, 2011 13:24
Show Gist options
  • Save getflourish/1064824 to your computer and use it in GitHub Desktop.
Save getflourish/1064824 to your computer and use it in GitHub Desktop.
public class ControlWindow extends PApplet
{
PApplet p;
ControlWindow(PApplet p)
{
this.p = p;
}
public void setup() {
size(200, 600);
}
public void draw() {
background(0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment