(ImagePlus img)
| 5782 | } |
| 5783 | |
| 5784 | void setPosition(ImagePlus img) { |
| 5785 | int channel = (int)getFirstArg(); |
| 5786 | int slice = (int)getNextArg(); |
| 5787 | int frame = (int)getLastArg(); |
| 5788 | img.setPosition(channel, slice, frame); |
| 5789 | } |
| 5790 | |
| 5791 | void setDimensions(ImagePlus img) { |
| 5792 | int c = (int)getFirstArg(); |
no test coverage detected