[Gambas-user] gb3: 2D array of 1D Integer arrays

Kevin Fishburne kevinfishburne at ...1887...
Mon Aug 8 22:25:02 CEST 2011


On 08/08/2011 04:10 PM, Benoît Minisini wrote:
>> I asked this before and didn't get a response. Maybe I gave too much
>> background information and made the problem appear more complex than it is.
>>
>> I need to create a 2D array of 1D Integer arrays.
>
> You should write it that way:
>
> "a 2D array of 1D array of integers".
>
> Then you write it in Gambas from right to left:
>
> 	Integer[x][y, z]
>
> In Gambas a 2D array, a 1D array, a XD array are all arrays. So the datatype
> is 'Integer[][]'.
>
> 	Dim MyStrangeArray As Integer[][]
>
> 	MyStrangeArray = new Integer[][SizeX, SizeY]
>
> 	MyStrangeArray[X, Y] = New Integer[SizeZ]
>
> Is it clearer ?

I think I got it. :) I did this as you suggested:

Public tTileGrid As Integer[][]

tTileGrid = New Integer[][TileGrid.Size, TileGrid.Size]

For counter2 = 0 To TileGrid.Size - 1
   For counter1 = 0 To TileGrid.Size - 1
     tTileGrid[counter1, counter2] = New Integer[1]
     tTileGrid[counter1, counter2] = Gl.GenTextures(1)
   Next
Next

It seems to work fine. Thanks!

-- 
Kevin Fishburne
Eight Virtues
www: http://sales.eightvirtues.com
e-mail: sales at ...1887...
phone: (770) 853-6271





More information about the User mailing list