We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I just tried a KinectOrbit Example
these are the code:
import processing.opengl.*;
import kinectOrbit.*;
KinectOrbit myOrbit;
void setup()
{
size(800, 600, OPENGL);
myOrbit = new KinectOrbit(this);
}
void draw()
{
background(255);
myOrbit.pushOrbit(this);
box(500);
myOrbit.popOrbit(this);
rect(10,10,50,50);
}
when i tried to run this code. the program said to me "the constructor KinectOrbit(KinectOrbits)is undefined"
I hope, You can help me Thanks for your attention
Answers
It happens with most of the libraries when you install with processing. Sometimes processing refuses to integrate libraries with IDE so what you need to do is to go to C:\Users\Users_name\Documents\Processing\libraries\library_name\library\Executalbejarfile.java and then drag and drop this executable java file on your processing sketch or just use add file from the tool menu and then run your sketch... I am pretty sure it will work
Perhaps the article Common issues with sketch names is relevant here, given the error message...