Slide the passed 2D window slice. * * If slice contains the last slice then it will remain unchanged and false will be returned. * * @param[in,out] slice Current slice, to be updated to the next slice. * * @return true if slice contains a new slice, false if slice already contained the last slice */
| 340 | * @return true if slice contains a new slice, false if slice already contained the last slice |
| 341 | */ |
| 342 | bool slide_window_slice_2D(Window &slice) const |
| 343 | { |
| 344 | return slide_window_slice<2>(slice); |
| 345 | } |
| 346 | /** Slide the passed 3D window slice. |
| 347 | * |
| 348 | * If slice contains the last slice then it will remain unchanged and false will be returned. |