Final thoughts



I'm interested in importing 3D models into processing and working with audio data as an input. I want the visuals to respond in 3D space to music.

box2d with minim

import saito.objloader.*;
OBJModel model;

void setup()
{

size(300,200,P3D);

model = new OBJModel(this, "diy_clean.obj", "relative", QUADS);
model.scale(10);
model.translateToCenter();
}

float z = 0;

void draw(){
background(128);
lights();
z = z + 0.1;
translate(200,0,0);
rotateY(z);
translate(-200,0,0);
translate(width/2, height/2, 0);
model.draw();
}