Returns 'true' if setPosition(C,Z,T) has been called.
()
| 2271 | |
| 2272 | /** Returns 'true' if setPosition(C,Z,T) has been called. */ |
| 2273 | public boolean hasHyperStackPosition() { |
| 2274 | if (getPosition()==PointRoi.POINTWISE_POSITION) |
| 2275 | return false; |
| 2276 | else |
| 2277 | return channel>0 || slice>0 || frame>0; |
| 2278 | } |
| 2279 | |
| 2280 | /** Sets the position of this ROI based on the stack position of the specified image. */ |
| 2281 | public void setPosition(ImagePlus imp ) { |
no test coverage detected