Displays the specified stack image ({@literal 1<=n<=stackSize}) without updating the display.
(int n)
| 2140 | /** Displays the specified stack image ({@literal 1<=n<=stackSize}) |
| 2141 | without updating the display. */ |
| 2142 | public void setSliceWithoutUpdate(int n) { |
| 2143 | noUpdateMode = true; |
| 2144 | setSlice(n); |
| 2145 | noUpdateMode = false; |
| 2146 | } |
| 2147 | |
| 2148 | /** Returns the current selection, or null if there is no selection. */ |
| 2149 | public Roi getRoi() { |
no test coverage detected