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

Method Traverse

Rendering/SceneGraph/vtkViewNode.cxx:142–152  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

140
141//------------------------------------------------------------------------------
142void vtkViewNode::Traverse(int operation)
143{
144 this->Apply(operation, true);
145
146 for (auto val : this->Children)
147 {
148 val->Traverse(operation);
149 }
150
151 this->Apply(operation, false);
152}
153
154//------------------------------------------------------------------------------
155vtkViewNode* vtkViewNode::CreateViewNode(vtkObject* obj)

Callers 4

TraverseAllPassesMethod · 0.95
WriteDataMethod · 0.45
UnitTestsFunction · 0.45

Calls 1

ApplyMethod · 0.95

Tested by 1

UnitTestsFunction · 0.36