Advertisement
Guest User

Untitled

a guest
Jan 17th, 2020
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const boxes = {
  2.   0: [[0, 0], [0, 1], [0, 2],
  3.   [1, 0], [1, 1], [1, 2],
  4.   [2, 0], [2, 1], [2, 2]],
  5.  
  6.   1: [[0, 3], [0, 4], [0, 5],
  7.   [1, 3], [1, 4], [1, 5],
  8.   [2, 3], [2, 4], [2, 5]],
  9.  
  10.   2: [[0, 6], [0, 7], [0, 8],
  11.   [1, 6], [1, 7], [1, 8],
  12.   [2, 6], [2, 7], [2, 8]],
  13.  
  14.   3: [[3, 0], [3, 1], [3, 2],
  15.   [4, 0], [4, 1], [4, 2],
  16.   [5, 0], [5, 1], [5, 2]],
  17.  
  18.   4: [[3, 3], [3, 4], [3, 5],
  19.   [4, 3], [4, 4], [4, 5],
  20.   [5, 3], [5, 4], [5, 5]],
  21.  
  22.   5: [[3, 6], [3, 7], [3, 8],
  23.   [4, 6], [4, 7], [4, 8],
  24.   [5, 6], [5, 7], [5, 8]],
  25.  
  26.   6: [[6, 0], [6, 1], [6, 2],
  27.   [7, 0], [7, 1], [7, 2],
  28.   [8, 0], [8, 1], [8, 2]],
  29.  
  30.   7: [[6, 3], [6, 4], [6, 5],
  31.   [7, 3], [7, 4], [7, 5],
  32.   [8, 3], [8, 4], [8, 5]],
  33.  
  34.   8: [[6, 6], [6, 7], [6, 8],
  35.   [7, 6], [7, 7], [7, 8],
  36.   [8, 6], [8, 7], [8, 8]]
  37. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement