fast_obj
fast_obj copied to clipboard
Fast C OBJ parser
It seems some obj exporters leave a trailing whitespace after the `mtllib` declaration. This commit simply checks and removes trailing whitespaces from that lib path. Im not sure this is...
This PR replaces the `fastObjTexture` maps in `fastObjMaterial` with `unsigned int` indices (which index into a newly added `fastObjMesh::textures` array). With this, all texture maps used in an OBJ file...
I used this library (thank you for sharing it!) with [ttf2mesh ](https://github.com/fetisov/ttf2mesh) and it exports spaces as empty objects. The names still hold data about the characters but your library...
Hello and thank you for developing fast_obj. There has been many improvements since the last release and the library is used in Organic Maps among other projects. Could you consider...
Passing a function pointer to the library gives greater flexibility than through the `#define`s for FAST_OBJ_REALLOC/_FREE, as it's a choice that can be made (and changed) at runtime. This PR...
There is small issue when using blender export and map for texture is actual path rather than filename. The map_ can have "name" as `C:\\...\\Diffuse.png` which result in name having...