Posted in: Infinity

.OBJ File Parsing

Today I implemented an OBJ-parser. This parser loads an .obj file and spits out an Infinity::Model* object. I had to iron out some memory leaks and performance issues (that being said it still takes about seven seconds to load the Stanford dragon model), but now it works 🙂


After further testing, I realized that it only takes this long in Debug mode. In Release mode, the loading time is almost instant (0.5 secs maximum).

Back to Top