Go to the documentation of this file.
64 #define MAT2(mat, dx, dy) \
68 #define RAT2(mat, x, y) \
71 #define VAT2(mat, x, y) \
72 mat[(y - 1) * dx_##mat + (x - 1)]
76 #define MAT3(mat, dx, dy, dz) \
81 #define RAT3(mat, x, y, z) \
84 #define VAT3(mat, x, y, z) \
85 mat[(z - 1) * dy_##mat * dx_##mat + \
86 (y - 1) * dx_##mat + \