Have been looking around google and can find no reference there or in processing documents for the following.
How do I reference the PApplet of my sketch from 'x' inner class
Object object;
class test
{test () { object = object.setInstance(this);
}
'this' is a type of PApplet and needs to reference the main PApplet of my sketch
I do not know how to pass a PApplet type of my sketch to the function.