------------------------------------------------------------------------------
| 112 | |
| 113 | //------------------------------------------------------------------------------ |
| 114 | void vtkSelectionSource::RemoveNode(unsigned int idx) |
| 115 | { |
| 116 | if (idx >= this->NodesInfo.size()) |
| 117 | { |
| 118 | vtkErrorMacro("Invalid node id: " << idx); |
| 119 | return; |
| 120 | } |
| 121 | this->NodesInfo.erase(this->NodesInfo.begin() + idx); |
| 122 | this->Modified(); |
| 123 | } |
| 124 | |
| 125 | //------------------------------------------------------------------------------ |
| 126 | void vtkSelectionSource::RemoveNode(const char* name) |
no test coverage detected