Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 598 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 598 Bytes

OBJLoader

Lightweight Wavefront 3D File Loader

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.

Features

  • 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

Limitations

  • Triangulation is not supported
  • Normal generation is not supported

Triangulation and normal generation may be added soon.