Redisplays the (x,y) coordinates and pixel value (which may have changed) in the status bar. Called by the Next Slice and Previous Slice commands to update the z-coordinate and pixel value.
()
| 2908 | * Previous Slice commands to update the z-coordinate and pixel value. |
| 2909 | */ |
| 2910 | public void updateStatusbarValue() { |
| 2911 | ImageCanvas ic = getCanvas(); |
| 2912 | Point loc = ic!=null?ic.getCursorLoc():null; |
| 2913 | if (loc!=null) |
| 2914 | mouseMoved(loc.x,loc.y); |
| 2915 | } |
| 2916 | |
| 2917 | String getFFTLocation(int x, int y, Calibration cal) { |
| 2918 | double center = width/2.0; |
no test coverage detected