| 130 | } |
| 131 | |
| 132 | bool vtkCellGridCopyQuery::AddAllSourceCellAttributeIds() |
| 133 | { |
| 134 | if (this->Source) |
| 135 | { |
| 136 | std::size_t nn = this->CellAttributeIds.size(); |
| 137 | auto allIds = this->Source->GetCellAttributeIds(); |
| 138 | this->CellAttributeIds.insert(allIds.begin(), allIds.end()); |
| 139 | return nn != this->CellAttributeIds.size(); |
| 140 | } |
| 141 | return false; |
| 142 | } |
| 143 | |
| 144 | void vtkCellGridCopyQuery::GetCellAttributeIds(vtkIdList* ids) const |
| 145 | { |