(Roi roi)
| 8181 | } |
| 8182 | |
| 8183 | void setRoiPosition(Roi roi) { |
| 8184 | int channel = (int)getFirstArg(); |
| 8185 | if (interp.nextToken()==')') { |
| 8186 | interp.getRightParen(); |
| 8187 | roi.setPosition(channel); |
| 8188 | return; |
| 8189 | } |
| 8190 | int slice = (int)getNextArg(); |
| 8191 | int frame = (int)getLastArg(); |
| 8192 | roi.setPosition(channel, slice, frame); |
| 8193 | } |
| 8194 | |
| 8195 | void getRoiPosition(Roi roi) { |
| 8196 | Variable channel = getFirstVariable(); |
no test coverage detected