MCPcopy Create free account
hub / github.com/BoomingTech/Piccolo / parseReal3

Function parseReal3

engine/3rdparty/tinyobjloader/tiny_obj_loader.h:1028–1035  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1026}
1027
1028static inline void parseReal3(real_t *x, real_t *y, real_t *z,
1029 const char **token, const double default_x = 0.0,
1030 const double default_y = 0.0,
1031 const double default_z = 0.0) {
1032 (*x) = parseReal(token, default_x);
1033 (*y) = parseReal(token, default_y);
1034 (*z) = parseReal(token, default_z);
1035}
1036
1037static inline void parseV(real_t *x, real_t *y, real_t *z, real_t *w,
1038 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