------------------------------------------------------------------------------
| 493 | |
| 494 | //------------------------------------------------------------------------------ |
| 495 | void vtkDataObjectMeshCache::ForwardAttributesToDataSet( |
| 496 | vtkDataSet* input, vtkDataSet* cache, vtkDataSet* outputDataSet) |
| 497 | { |
| 498 | if (!input || !cache) |
| 499 | { |
| 500 | return; |
| 501 | } |
| 502 | |
| 503 | for (const auto& attribute : this->OriginalIdsName) |
| 504 | { |
| 505 | this->ForwardAttributes(input, cache, outputDataSet, attribute.first, attribute.second); |
| 506 | } |
| 507 | |
| 508 | outputDataSet->GetFieldData()->PassData(input->GetFieldData()); |
| 509 | } |
| 510 | |
| 511 | //------------------------------------------------------------------------------ |
| 512 | void vtkDataObjectMeshCache::ForwardAttributesToComposite( |
no test coverage detected