------------------------------------------------------------------------------ Description: Return in `boundaries' the cells of dimension `dim' (or all dimensions less than GetDimension() if -1) that are part of the boundary of the cell. \pre valid_dim_range: (dim==-1) || ((dim>=0)&&(dim<GetDimension())) \pre boundaries_exist: boundaries!=0
| 287 | // \pre valid_dim_range: (dim==-1) || ((dim>=0)&&(dim<GetDimension())) |
| 288 | // \pre boundaries_exist: boundaries!=0 |
| 289 | void vtkBridgeCell::GetBoundaryIterator(vtkGenericCellIterator* boundaries, int dim) |
| 290 | { |
| 291 | assert("pre: valid_dim_range" && ((dim == -1) || ((dim >= 0) && (dim < GetDimension())))); |
| 292 | assert("pre: boundaries_exist" && boundaries != nullptr); |
| 293 | static_cast<vtkBridgeCellIterator*>(boundaries)->InitWithCellBoundaries(this, dim); |
| 294 | } |
| 295 | |
| 296 | //------------------------------------------------------------------------------ |
| 297 | // Description: |