------------------------------------------------------------------------------
| 814 | |
| 815 | //------------------------------------------------------------------------------ |
| 816 | bool vtkDataAssembly::AddDataSetIndexRange(int id, unsigned int index_start, int count) |
| 817 | { |
| 818 | // for now, we're doing this easy thing..at some point we may want to add |
| 819 | // support for storing ranges compactly. |
| 820 | std::vector<unsigned int> indices(count); |
| 821 | std::iota(indices.begin(), indices.end(), index_start); |
| 822 | return this->AddDataSetIndices(id, indices); |
| 823 | } |
| 824 | |
| 825 | //------------------------------------------------------------------------------ |
| 826 | bool vtkDataAssembly::RemoveDataSetIndex(int id, unsigned int dataset_index) |
no test coverage detected