We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I am creating a project with Processing 2.1.1 with this code:
import processing.opengl.*;
import SimpleOpenNI.*;
import kinectOrbit.*;
KinectOrbit myOrbit;
SimpleOpenNI kinect;
void setup()
{
size(800, 600, OPENGL);
myOrbit = new KinectOrbit(this, 0);
kinect = new SimpleOpenNI(this);
// enable depthMap generation
kinect.enableDepth();
}
which is on my manual book but i got an error, the programs stops and processing tells me to update the library... WHAT CAN I DO???
Answers
It looks like that library has not been updated to work with Processing 2.x. Your best shot if you need that particular library is probably to try it with Processing 1.5.1.
You have ask the same question twice ... http://forum.processing.org/two/discussion/comment/14758#Comment_14758