|
Compounds |
struct | colorRGBA |
struct | GeneralGrid |
struct | OrthoGrid |
struct | Rect |
struct | Vec2f |
struct | Vec3f |
Defines |
#define | DATA_INDEX_3D_TO_1D(x, y, z) ((z)*generalGrid.sizeXY + (y)*generalGrid.sizeX + (x)) |
#define | DATA_INDEX_2D_TO_1D(x, y) ((y)*generalGrid.sizeX + (x)) |
#define | ADDITIONALDATA_INDEX_3D_TO_1D(x, y, z, k) (DATA_INDEX_3D_TO_1D(x,y,z) * numOfSets + k) |
#define | RESAMPLE_DATA_INDEX_3D_TO_1D(x, y, z) ((z)*orthoGrid.sizeXY + (y)*orthoGrid.sizeX + (x)) |
#define | RESAMPLE_ADDITIONALDATA_INDEX_3D_TO_1D(x, y, z, k) (RESAMPLE_DATA_INDEX_3D_TO_1D(x,y,z) * numOfSets + k) |