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

Function parseV

source/external/tinyobj/tiny_obj_loader.h:1081–1090  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1079
1080#if 0 // not used
1081static inline void parseV(real_t *x, real_t *y, real_t *z, real_t *w,
1082 const char **token, const double default_x = 0.0,
1083 const double default_y = 0.0,
1084 const double default_z = 0.0,
1085 const double default_w = 1.0) {
1086 (*x) = parseReal(token, default_x);
1087 (*y) = parseReal(token, default_y);
1088 (*z) = parseReal(token, default_z);
1089 (*w) = parseReal(token, default_w);
1090}
1091#endif
1092
1093// Extension: parse vertex with colors(6 items)

Callers

nothing calls this directly

Calls 1

parseRealFunction · 0.85

Tested by

no test coverage detected