internal ImageDataTiler(ImageData enclosingInstance, RandomAccess o, long offset, ArrayDesc d) : base(o, offset, d.dims, d.type) { InitBlock(enclosingInstance); }
private void InitBlock(ImageData enclosingInstance) { this.enclosingInstance = enclosingInstance; }
internal ArrayDesc(ImageData enclosingInstance, int[] dims, Type type) { InitBlock(enclosingInstance); this.dims = dims; this.type = type; }