There is a workaround until a new export makes an appearance. In the .zip file that you download the jar in is a .java file. Drop this into your sketch so that it is another tab in the sketch.
Comment out this line at the top of the .java file
Code:package damkjer.ocd; // delete this line
change the name of the camera class to be
Code: public class OCDCamera {
and change the name of the constructors of the class. From
Code:public Camera(PApplet parent)
to
Code:public OCDCamera(PApplet parent)
There are five of these. Make sure to change them all.
ok last thing. Remove the import ocd line from the top of your sketch.
Code://import damkjer.ocd.*;
and change these
Code:Camera camera1;
camera1 = new Camera(this, 200, -250, 300);
to these
Code:OCDCamera camera1; // pulls in the new renamed class
camera1 = new OCDCamera(this, 200, -250, 300); // activates the renamed constructor
All this hack does is rename the class and constructors to stop the naming conflict. One day there will be a recompile of the library to fix the naming issues. Until then I hope this helps you out.