Package de.gsi.math.storage
Interface VoxelArrayND
-
- All Known Implementing Classes:
DoubleStorage1D,DoubleStorageND
public interface VoxelArrayND
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VoxelArrayNDcopy()double[]get(int[] index)int[]getInverseLocalIndex(int index)double[]getLocal(int localIndex)intgetLocalIndex(int[] index)intgetLocalStorageDim()intgetValueDimension()voidinitialiseWithValue(double val)voidset(int[] index, double[] val)voidsetLocal(int localIndex, double[] val)
-
-
-
Method Detail
-
copy
VoxelArrayND copy()
-
get
double[] get(int[] index)
-
getInverseLocalIndex
int[] getInverseLocalIndex(int index)
-
getLocal
double[] getLocal(int localIndex)
-
getLocalIndex
int getLocalIndex(int[] index)
-
getLocalStorageDim
int getLocalStorageDim()
-
getValueDimension
int getValueDimension()
-
initialiseWithValue
void initialiseWithValue(double val)
-
set
void set(int[] index, double[] val)
-
setLocal
void setLocal(int localIndex, double[] val)
-
-