1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
int array[] = {
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
2,2,2,2,3,3,3,3,1,1,1,1,2,2,2,2,3,3,3,3,
2,2,2,2,3,3,3,3,1,1,1,1,2,2,2,2,3,3,3,3,
2,2,2,2,3,3,3,3,1,1,1,1,2,2,2,2,3,3,3,3,
2,2,2,2,3,3,3,3,1,1,1,1,2,2,2,2,3,3,3,3,
2,2,2,2,3,3,3,3,1,1,1,1,2,2,2,2,3,3,3,3,
2,2,2,2,3,3,3,3,1,1,1,1,2,2,2,2,3,3,3,3,
2,2,2,2,3,3,3,3,1,1,1,1,2,2,2,2,3,3,3,3,
2,2,2,2,3,3,3,3,1,1,1,1,2,2,2,2,3,3,3,3,
2,2,2,2,3,3,3,3,1,1,1,1,2,2,2,2,3,3,3,3,
2,2,2,2,3,3,3,3,1,1,1,1,2,2,2,2,3,3,3,3,
1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
};
int i = 0;
for(int y = 0; y < 12; y++) {
for(int x = 0; x < 20; x++) {
functionPlotPixel(x , y, array[i]);
i += 1;
}
}
functionGetImage(functionArray[]);
| |