40 likes | 164 Views
Current works. Finishing Matlab simulator OpenGL Graphics: done Geometry file: can load OBJ file (see later slide) Simple physics framework: 80% Stewart Trinkle: Done with w/o collision detection. Current works.
E N D
Current works • Finishing Matlab simulator • OpenGL Graphics: done • Geometry file: can load OBJ file (see later slide) • Simple physics framework: 80% • Stewart Trinkle: Done with w/o collision detection
Current works • Preparing for iterative solvers by running all quadratic solvers mention in new Mihai’ s paper: • OOOP (Opensourced): requested and downloaded • MOSEK(commercial): got trial version • CLHMOD: built in Matlab and c++ code ready • Others: not yet
What next? • Finish Matlab simulator • Start trying iterative solver on ST with available solver • Look out for SIGGRAPH paper
Obj file • A box: v 0.000000 2.000000 2.000000 v 0.000000 0.000000 2.000000 v 2.000000 0.000000 2.000000 v 2.000000 2.000000 2.000000 ; List of 8 vertices v 0.000000 2.000000 0.000000 v 0.000000 0.000000 0.000000 v 2.000000 0.000000 0.000000 v 2.000000 2.000000 0.000000 f 1 2 3 4 f 8 7 6 5 f 4 3 7 8 f 5 1 4 8 ; List of faces: important to note that a face = polygon not triangle. It’s crucial f 5 6 2 1 ; to have polygonal collision detection. f 2 6 7 3