You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

55 lines
590 B

const NUMBER_MATRIX = [
[
//H
[0, 0],
[3, 0],
[0, 1],
[3, 1],
[0, 2],
[1, 2],
[2, 2],
[3, 2],
[0, 3],
[3, 3],
[0, 4],
[3, 4],
],
[
//L
[0, 0],
[0, 1],
[0, 2],
[0, 3],
[0, 4],
[1, 4],
[2, 4],
[3, 4],
],
[
//2
[0, 0],
[1, 0],
[2, 0],
[3, 0],
[3, 1],
[2, 2],
[1, 3],
[0, 4],
[1, 4],
[2, 4],
[3, 4],
],
[
//7
[0, 0],
[1, 0],
[2, 0],
[3, 0],
[3, 1],
[2, 2],
[1, 3],
[1, 4],
],
];
export { NUMBER_MATRIX };