MCPcopy Create free account
hub / github.com/Kitware/VTK / GetNodePath

Method GetNodePath

Common/DataModel/vtkDataAssembly.cxx:691–701  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

689
690//------------------------------------------------------------------------------
691std::string vtkDataAssembly::GetNodePath(int id) const
692{
693 const auto& internals = (*this->Internals);
694 auto node = internals.FindNode(id);
695 if (!node)
696 {
697 return std::string{};
698 }
699
700 return node.path();
701}
702
703//------------------------------------------------------------------------------
704int vtkDataAssembly::GetFirstNodeByPath(const char* path) const

Callers 6

AppendAssemblyMethod · 0.80
VisitMethod · 0.80
VisitMethod · 0.80
TestDataAssemblyFunction · 0.80
FetchAnnotationsMethod · 0.80
reportNodeFunction · 0.80

Calls 2

FindNodeMethod · 0.80
pathMethod · 0.80

Tested by 2

TestDataAssemblyFunction · 0.64
reportNodeFunction · 0.64