(double n)
| 448 | } |
| 449 | |
| 450 | private String d2s(double n) { |
| 451 | int digits = Tools.getDecimalPlaces(n); |
| 452 | if (digits>2) digits=2; |
| 453 | return IJ.d2s(n,digits); |
| 454 | } |
| 455 | |
| 456 | @AstroImageJ(reason = "Disable final check for extra width, disables drawing of border rectangle", modified = true) |
| 457 | public void paint(Graphics g) { |
no test coverage detected