| 324 | } |
| 325 | |
| 326 | static std::string_view nextWord(const char* token) { |
| 327 | const char* endptr = strpbrk(token, " \t"); |
| 328 | return endptr ? std::string_view{token, static_cast<size_t>(endptr - token)} : token; |
| 329 | } |
| 330 | |
| 331 | static unsigned int updateVertex(std::map<vertex_index, unsigned int>& vertexCache, |
| 332 | std::vector<float>& positions, |