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

1 month ago
  1. const NUMBER_MATRIX = [
  2. [
  3. //H
  4. [0, 0],
  5. [3, 0],
  6. [0, 1],
  7. [3, 1],
  8. [0, 2],
  9. [1, 2],
  10. [2, 2],
  11. [3, 2],
  12. [0, 3],
  13. [3, 3],
  14. [0, 4],
  15. [3, 4],
  16. ],
  17. [
  18. //L
  19. [0, 0],
  20. [0, 1],
  21. [0, 2],
  22. [0, 3],
  23. [0, 4],
  24. [1, 4],
  25. [2, 4],
  26. [3, 4],
  27. ],
  28. [
  29. //2
  30. [0, 0],
  31. [1, 0],
  32. [2, 0],
  33. [3, 0],
  34. [3, 1],
  35. [2, 2],
  36. [1, 3],
  37. [0, 4],
  38. [1, 4],
  39. [2, 4],
  40. [3, 4],
  41. ],
  42. [
  43. //7
  44. [0, 0],
  45. [1, 0],
  46. [2, 0],
  47. [3, 0],
  48. [3, 1],
  49. [2, 2],
  50. [1, 3],
  51. [1, 4],
  52. ],
  53. ];
  54. export { NUMBER_MATRIX };