*
* @param z The depth-index in the stack
* @return A short[]-array representing the current stack at posistion z
*/
public short[] getSlice(int z) {
VolumeReader ip = getCurrentView().getSliceReader();
if (ip == null)
return null;
return ip.getSlice(z);
}