Deletes the last slice in the stack.
()
| 208 | |
| 209 | /** Deletes the last slice in the stack. */ |
| 210 | public void deleteLastSlice() { |
| 211 | int n = size(); |
| 212 | if (n>0) |
| 213 | deleteSlice(n); |
| 214 | } |
| 215 | |
| 216 | /** Returns the pixel array for the specified slice, where {@literal 1<=n<=nslices}. */ |
| 217 | public Object getPixels(int n) { |
nothing calls this directly
no test coverage detected