[s]Ah, crap. I must have vecmath installed locally (I guess OS X does by default). Well, I’ll have to work this out tomorrow, this might take some debugging (my build script for whatever reason won’t let me add vecmath.jar when it does its thing)…sorry about that!
Gotta get rid of that vecmath dependency anyways, since it’s GPL and JBox2d is trying to be zlib-only - I guess this gives me a good excuse to make that a priority![/s]
Nevermind, fixed it just now - took out the vecmath stuff (was just using Color3f as a holder anyways) and replaced it with my own code. Sorry I missed that at first!
One thing I notice that still really disturbs me, the memory usage goes up and up if you keep reloading the applet…I suspect that means the previously loaded copies never unload (I also had to remove any static state variables or I discovered they never get reset when you reload - some searching shows that this is Not A Bug, but man, is that irritating and unexpected!). Eventually I run out of heap space and the browser sometimes even crashes. Does anyone know a way around that, or is it just another one of those things that make Java suck in the browser? (It also might be a Processing bug, I’m not sure - if Processing’s internals hold on to a single static reference to my controller, that’s going to leak the entire active heap right there)