@{ * Visit each node in the assembly for processing. The traversal order can be * specified using `traversal_order` which defaults to depth-first. */
| 385 | * specified using `traversal_order` which defaults to depth-first. |
| 386 | */ |
| 387 | void Visit(vtkDataAssemblyVisitor* visitor, |
| 388 | int traversal_order = vtkDataAssembly::TraversalOrder::DepthFirst) const |
| 389 | { |
| 390 | this->Visit(0, visitor, traversal_order); |
| 391 | } |
| 392 | void Visit(int id, vtkDataAssemblyVisitor* visitor, |
| 393 | int traversal_order = vtkDataAssembly::TraversalOrder::DepthFirst) const; |
| 394 | ///@} |