Hi,
i got a little problem creating array [][][],
i want [5][5] of int,vector3d
i create a class that i use like a struct (in C of course)
CLASS TOTO
INT
VECTOR
than i create place
TOTO [][] test =
new TOTO [5][5];
and i try to fedd it like
test.int[0][0] = int
test.vector[0][0] = vector
it does not work
Does some one can show me how to create this kind of Array.
Thanks a lot in advence
HERVE
PS: sorry |