OBJLoader is a lightweight single file utility class that loads .obj files and provides float data buffer which can be readily used to render objects in graphics libraries such as OpenGL or DirectX.
- Import 3D model from .obj file
- Quickly parse the file using tokens
- Vertex data buffer is generated for use in graphics applications
- Additional model info exposed via public methods
- Triangulation is not supported
- Normal generation is not supported
Triangulation and normal generation may be added soon.