This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---------------------------------------------------------------------------- | |
// Single Header Wavefront OBJ Parser, by Ryan Fleury | |
// ---------------------------------------------------------------------------- | |
// | |
// This is a single-header Wavefront OBJ parsing library that is both C99+ and | |
// C++ compatible. There are two APIs that you can use. One of which is lower | |
// level and more shippable, and the other is high level and less shippable, | |
// but is nice to get things off the ground. | |
// | |
// To use this file, you must #define OBJ_PARSE_IMPLEMENTATION in at least ONE |