jung6717 / arduino

Automatically exported from code.google.com/p/arduino
0 stars 0 forks source link

Multidimensional arrays #233

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Why?

Some data structures fits better in multidimensional arrays.

Original issue reported on code.google.com by andreme...@gmail.com on 25 Apr 2010 at 11:04

GoogleCodeExporter commented 8 years ago
The underlaying language (C/C++) doesn't support multidimensional arrays.

You can however use pointers to arrays, or even pointers to pointers to arrays.
So you have unlimited dimensions at hand already.

Original comment by qistoph on 26 Apr 2010 at 7:19

GoogleCodeExporter commented 8 years ago
I'd successfully done two-dimensional arrays. see 
http://www.tigoe.net/pcomp/code/category/Processing/454

Original comment by tom.i...@gmail.com on 28 Oct 2010 at 1:59

GoogleCodeExporter commented 8 years ago
I think C++ support multi-dimensional arrays, but if not, I don't think there'd 
be a good way for us to add them.

Original comment by dmel...@gmail.com on 30 Dec 2011 at 10:47