tinypile
tinypile copied to clipboard
About the step direction
// { -1, -1 }, { 0, -1 }, { 1, -1 } //0 1 2 ideal?
// { -1, 0 }, { 1, 0 } //3 4
// { -1, 1 }, { 0, 1 }, { 1, 1 } //5 6 7
// { 0, -1 }, { 1, -1 }, { 1, 0 } //0 1 2 but this is real
// { -1, -1 }, { 1, 1 } //7 8 3
// {- 1, 0 }, {-1, 1 }, { 0, 1 } //6 5 4
What should I do? How can I change it for work ??