------------------------------------------------------------------------------ Description: Used internally by vtkBridgeDataSet. Iterate over cells of `ds' of some dimension `dim'. \pre ds_exists: ds!=0 \pre valid_dim_range: (dim>=-1) && (dim<=3)
| 131 | // \pre ds_exists: ds!=0 |
| 132 | // \pre valid_dim_range: (dim>=-1) && (dim<=3) |
| 133 | void vtkBridgeCellIterator::InitWithDataSet(vtkBridgeDataSet* ds, int dim) |
| 134 | { |
| 135 | assert("pre: ds_exists" && ds != nullptr); |
| 136 | assert("pre: valid_dim_range" && (dim >= -1) && (dim <= 3)); |
| 137 | |
| 138 | this->IteratorOnDataSet->InitWithDataSet(ds, dim); |
| 139 | this->CurrentIterator = this->IteratorOnDataSet; |
| 140 | } |
| 141 | |
| 142 | //------------------------------------------------------------------------------ |
| 143 | // Description: |
no test coverage detected