im having problems with the setup syntax
I pretty sure about the logic after that
the actual application has much larger arrays 20x20 copied into 150x50
I want to copy and paste small[0] and small[1]..... small[98]and small[99]
into large a 10x10 boolean array
// ????? boolean small[100][3][3];
// ???? boolean large[10][10];
small[0][][]={ // this gets pasted to Large[0][0] to [2][2] x,y coordinates
{1,0,1},
{0,0,1},
{1,1,0},
};
small[1][][]={ //this gets pasted to Large[3][0] to [5][2]
{0,0,1},
{0,1,1},
{1,0,0},
};
...
small[98][][]={ //this gets pasted to Large[0][5] to [2][7]
{1,0,0},
{0,1,1},
{1,0,0},
};
small[99][][]={ //this gets pasted to Large[7][7] to [9][9]
{1,1,1},
{0,1,1},
{1,0,0},
};
// i want large to look like
{1,0,1,0,0,1,0,0,0,0},
{0,0,1,0,1,1,0,0,0,0},
{1,1,0,1,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0},
{0,0,0,0,0,0,0,0,0,0},
{0,1,0,0,0,0,0,0,0,0},
{0,0,1,1,0,0,0,0,0,0},
{0,1,0,0,0,0,0,1,1,1},
{0,0,0,0,0,0,0,0,1,1},
{0,0,0,0,0,0,0,1,0,0},
// when I'm done