Skip to content

Commit

Permalink
changed example to start with depth by default
Browse files Browse the repository at this point in the history
  • Loading branch information
shiffman committed Dec 17, 2010
1 parent e7ef367 commit 6a63d33
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
Expand Up @@ -7,13 +7,16 @@
public class Kinecting extends PApplet {

Kinect kinect;
boolean depth = false;
boolean depth = true;
boolean rgb = false;

public void setup() {
size(1280,520);
kinect = new Kinect(this);
kinect.start();
kinect.enableDepthImage(depth);
kinect.enableRGBImage(rgb);

}

public void draw() {
Expand All @@ -39,7 +42,7 @@ public void keyPressed() {
public static void main(String _args[]) {
PApplet.main(new String[] { librarytests.Kinecting.class.getName() });
}



}
Binary file modified wrappers/java/processing/distribution/openkinect.zip
Binary file not shown.

0 comments on commit 6a63d33

Please sign in to comment.