MCPcopy Create free account
hub / github.com/OGRECave/ogre-next / findNameRecursive

Function findNameRecursive

Tools/VRMLConverter/src/VRML2mesh.cpp:450–458  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

448}
449
450const String *findNameRecursive(const vrmllib::node *n)
451{
452 if (const String *name = findName(n))
453 return name;
454 else if (n->parent)
455 return findNameRecursive(n->parent);
456 else
457 return 0;
458}
459
460void parseFaces(FaceVec &faces, const IndexedFaceSet *ifs)
461{

Callers 1

parseShapeFunction · 0.85

Calls 1

findNameFunction · 0.85

Tested by

no test coverage detected