A set of functions that let you work with multi-dimensional arrays of any size/shape in maxscript.
It works by using 2 variables to represent a multi-dimensional array.
Lets call them:
JMIMdat = #(5,5,5,10)
JMIMarr = #(...)
JMIMdat:
Is an array holding the slot dimensions of your multi-dimensional array.
In this case, it is a 4 dimensional array.
JMIMarr:
Is the corresponding array to be treated as a multidimensional array.
JMIMarr.count = (5x5x5x10)