()
| 1118 | } |
| 1119 | |
| 1120 | void setZCoordinate() { |
| 1121 | int z = (int)getArg(); |
| 1122 | int n = z + 1; |
| 1123 | ImagePlus imp = getImage(); |
| 1124 | ImageStack stack = imp.getStack(); |
| 1125 | int size = stack.size(); |
| 1126 | if (z<0 || z>=size) |
| 1127 | interp.error("Z coordinate ("+z+") is out of 0-"+(size-1)+ " range"); |
| 1128 | this.defaultIP = stack.getProcessor(n); |
| 1129 | } |
| 1130 | |
| 1131 | void moveTo() { |
| 1132 | interp.getLeftParen(); |
no test coverage detected