21.12.2013, 19:44
How do I properly write a 3D Array for Floats?
I keep getting a tag mismatch at the commented line.
Thanks for the help.
I keep getting a tag mismatch at the commented line.
pawn Код:
3DArray[ ][ ][ ] =
{
{ // Tag Mismatch
{ 1.0, 2.0, 3.0 },
{ 4.0, 5.0, 6.0 },
{ 7.0, 8.0, 9.0 }
},
{
{ 1.0, 2.0, 3.0 },
{ 4.0, 5.0, 6.0 },
{ 7.0, 8.0, 9.0 }
},
{
{ 1.0, 2.0, 3.0 },
{ 4.0, 5.0, 6.0 },
{ 7.0, 8.0, 9.0 }
}
};