------------------------------------------------------------------------------
| 582 | |
| 583 | //------------------------------------------------------------------------------ |
| 584 | int vtkSelectionSource::GetArrayComponent(unsigned int nodeId) |
| 585 | { |
| 586 | if (nodeId >= this->NodesInfo.size()) |
| 587 | { |
| 588 | vtkErrorMacro("Invalid node id: " << nodeId); |
| 589 | return 0; |
| 590 | } |
| 591 | return this->NodesInfo[nodeId]->ArrayComponent; |
| 592 | } |
| 593 | |
| 594 | //------------------------------------------------------------------------------ |
| 595 | void vtkSelectionSource::SetCompositeIndex(unsigned int nodeId, int index) |
no test coverage detected