With Processing, I usually create a PGraphics in which I draw all my elements that I'll send to my Syphon Client.
But as the draw method from the saito.objloader library is
directly drawing the 3d model in the main PApplet, I can't find how to draw directly in my canvas created below (the PGraphics elements I'm trying to send via Syphon).
Here's a copy of my code without the Syphon implementation:
import saito.objloader.*;
import ddf.minim.spi.*;
import ddf.minim.signals.*;
import ddf.minim.*;
import ddf.minim.analysis.*;
import ddf.minim.ugens.*;
import ddf.minim.effects.*;
import codeanticode.syphon.*;
Minim minim;
AudioInput in;
FFT fft;
PGraphics canvas;
SyphonServer server;
OBJModel model;
void setup()
{
size(600, 600, P3D);
server = new SyphonServer(this, "Frame");
minim = new Minim(this);
in = minim.getLineIn(Minim.STEREO, 512);
fft = new FFT(in.bufferSize(), in.sampleRate());
model = new OBJModel(this, "MaleLow.obj", "relative");