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

Method FindNodesWithName

Common/DataModel/vtkDataAssembly.cxx:1116–1123  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1114
1115//------------------------------------------------------------------------------
1116std::vector<int> vtkDataAssembly::FindNodesWithName(const char* name, int traversal_order) const
1117{
1118 vtkNew<FindNodesWithNameVisitor> visitor;
1119 visitor->FindFirstMatch = false;
1120 visitor->Name = name;
1121 this->Visit(visitor, traversal_order);
1122 return visitor->Matches;
1123}
1124
1125//------------------------------------------------------------------------------
1126std::vector<int> vtkDataAssembly::GetChildNodes(

Callers 1

RequestDataMethod · 0.80

Calls 1

VisitMethod · 0.95

Tested by

no test coverage detected