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

Function parseReal3

source/external/tinyobj/tiny_obj_loader.h:1071–1078  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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,
1073 const double default_y = 0.0,
1074 const double default_z = 0.0) {
1075 (*x) = parseReal(token, default_x);
1076 (*y) = parseReal(token, default_y);
1077 (*z) = parseReal(token, default_z);
1078}
1079
1080#if 0 // not used
1081static inline void parseV(real_t *x, real_t *y, real_t *z, real_t *w,

Callers 4

LoadMtlFunction · 0.85
LoadObjFunction · 0.85
LoadObjWithCallbackFunction · 0.85

Calls 1

parseRealFunction · 0.85

Tested by

no test coverage detected