obj loader

Started by
1 comment, last by ChaosWars 15 years, 9 months ago
Hi, Does anybody know of an obj loading tutorial? Ive looked around here and they all seem to be pretty old and use char arrays, and memory allocation techniques, using basic arrays. Where as i was planning on using strings, stringstreams, vectors and lists. or are they not using these due to a speed upgrade? thanks
Advertisement
If the tutorial works, just use the opportunity to sharpen your skills by rewriting it to proper C++. The desired effect (loading .obj files) will still be achieved :-)

By the way: there's a generic 3d scene loader library called ASSIMP available on sourceforge. Still in development, but does already load .obj files and a lot of other file formats. You don't need to write that for yourself if you don't want to spend the time on it.
----------
Gonna try that "Indie" stuff I keep hearing about. Let's start with Splatter.
It's not a tutorial, but you could check my code on googlecode : http://code.google.com/p/mll/

This topic is closed to new replies.

Advertisement