MCPcopy Create free account
hub / github.com/SaschaWillems/HowToVulkan / parseReal2

Function parseReal2

source/external/tinyobj/tiny_obj_loader.h:1064–1069  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1062}
1063
1064static inline void parseReal2(real_t *x, real_t *y, const char **token,
1065 const double default_x = 0.0,
1066 const double default_y = 0.0) {
1067 (*x) = parseReal(token, default_x);
1068 (*y) = parseReal(token, default_y);
1069}
1070
1071static inline void parseReal3(real_t *x, real_t *y, real_t *z,
1072 const char **token, const double default_x = 0.0,

Callers 2

LoadObjFunction · 0.85

Calls 1

parseRealFunction · 0.85

Tested by

no test coverage detected