(double value, int width)
| 75 | } |
| 76 | |
| 77 | private static String toString(double value, int width) { |
| 78 | String s = " " + IJ.d2s(value,0); |
| 79 | return s.substring(s.length()-MAX_DIGITS); |
| 80 | } |
| 81 | |
| 82 | private static String getSliceLabel(ImageStack stack, int n) { |
| 83 | String info = stack.getSliceLabel(n); |
no test coverage detected