03-14-2010, 09:05 AM
(03-13-2010, 10:40 PM)MadHatter Wrote: Hmm instead of declaring 7 different arrays in one script I made, I could have just made 4. Interesting....
Although its a common way, more dimensions to an array actually is slower than using one.
For example,
Code:
MySquareArray[x][y]
Code:
MySquareArray[x*y]