MCPcopy Create free account
hub / github.com/Siv3D/OpenSiv3D / parseReal3

Function parseReal3

Siv3D/src/ThirdParty/tinyobjloader/tiny_obj_loader.h:997–1004  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

995}
996
997static inline void parseReal3(real_t *x, real_t *y, real_t *z,
998 const char **token, const double default_x = 0.0,
999 const double default_y = 0.0,
1000 const double default_z = 0.0) {
1001 (*x) = parseReal(token, default_x);
1002 (*y) = parseReal(token, default_y);
1003 (*z) = parseReal(token, default_z);
1004}
1005
1006static inline void parseV(real_t *x, real_t *y, real_t *z, real_t *w,
1007 const char **token, const double default_x = 0.0,

Callers 4

LoadMtlFunction · 0.85
LoadObjFunction · 0.85
LoadObjWithCallbackFunction · 0.85

Calls 1

parseRealFunction · 0.85

Tested by

no test coverage detected