BlitzMax documentation is a little thin on the ground. Can someone suggest the best way to get data into a 3 dimensional array ?
The arrary data is fixed and will not ever change.
All array elements are of type integer
The x axis would contain 4 elements
The y axis would contain 32 elements
The z axis has 6 elements
Ideally I'd just have a table where I'd typed all the data in like this...
myarray[0,0,0]=12,14,10,15,17
myarray[0,1,0]=22,21,17,14,16
or, if BlitzMax has one, a series of consecutive DATA statements with a row of data in each?
The arrary data is fixed and will not ever change.
All array elements are of type integer
The x axis would contain 4 elements
The y axis would contain 32 elements
The z axis has 6 elements
Ideally I'd just have a table where I'd typed all the data in like this...
myarray[0,0,0]=12,14,10,15,17
myarray[0,1,0]=22,21,17,14,16
or, if BlitzMax has one, a series of consecutive DATA statements with a row of data in each?