-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwalls.js
104 lines (87 loc) · 2.76 KB
/
walls.js
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
var walls = [
{x:1, z:2, orientation:'front'},
{x:1, z:2, orientation:'right'},
{x:1, z:2, orientation:'back'},
{x:1, z:7, orientation:'back'},
{x:1, z:7, orientation:'right'},
{x:1, z:9, orientation:'front'},
{x:1, z:9, orientation:'right'},
{x:2, z:5, orientation:'front'},
{x:2, z:5, orientation:'back'},
{x:2, z:5, orientation:'left'},
{x:2, z:7, orientation:'front'},
{x:2, z:7, orientation:'back'},
{x:2, z:7, orientation:'left'},
{x:2, z:7, orientation:'right'},
{x:3, z:1, orientation:'right'},
{x:3, z:1, orientation:'left'},
{x:3, z:2, orientation:'right'},
{x:3, z:2, orientation:'left'},
{x:3, z:2, orientation:'back'},
{x:3, z:5, orientation:'back'},
{x:3, z:5, orientation:'right'},
{x:3, z:5, orientation:'front'},
{x:3, z:6, orientation:'right'},
{x:4, z:3, orientation:'front'},
{x:4, z:3, orientation:'back'},
{x:4, z:3, orientation:'left'},
{x:4, z:3, orientation:'right'},
{x:4, z:5, orientation:'front'},
{x:4, z:7, orientation:'front'},
{x:4, z:7, orientation:'right'},
{x:4, z:9, orientation:'right'},
{x:5, z:4, orientation:'right'},
{x:5, z:4, orientation:'back'},
{x:5, z:7, orientation:'back'},
{x:5, z:9, orientation:'right'},
{x:5, z:9, orientation:'front'},
{x:6, z:3, orientation:'front'},
{x:6, z:3, orientation:'left'},
{x:6, z:7, orientation:'back'},
{x:7, z:2, orientation:'front'},
{x:7, z:2, orientation:'left'},
{x:7, z:8, orientation:'back'},
{x:7, z:8, orientation:'front'},
{x:7, z:8, orientation:'left'},
{x:7, z:8, orientation:'right'},
{x:8, z:2, orientation:'front'},
{x:8, z:2, orientation:'right'},
{x:8, z:3, orientation:'right'},
{x:8, z:4, orientation:'right'},
{x:8, z:5, orientation:'right'},
{x:8, z:6, orientation:'right'},
{x:8, z:7, orientation:'right'},
{x:8, z:8, orientation:'right'},
{x:8, z:9, orientation:'right'},
{x:9, z:1, orientation:'back'},
{x:9, z:7, orientation:'back'},
{x:10, z:1, orientation:'back'},
{x:10, z:5, orientation:'back'},
{x:10, z:5, orientation:'front'},
{x:10, z:5, orientation:'left'},
{x:10, z:7, orientation:'back'},
{x:11, z:1, orientation:'back'},
{x:11, z:5, orientation:'back'},
{x:11, z:5, orientation:'front'},
{x:11, z:7, orientation:'back'},
{x:12, z:1, orientation:'back'},
{x:12, z:5, orientation:'back'},
{x:12, z:5, orientation:'front'},
{x:12, z:7, orientation:'back'},
{x:13, z:1, orientation:'back'},
{x:13, z:5, orientation:'back'},
{x:13, z:5, orientation:'front'},
{x:13, z:5, orientation:'right'},
{x:13, z:7, orientation:'back'},
{x:14, z:2, orientation:'back'},
{x:14, z:2, orientation:'front'},
{x:14, z:2, orientation:'left'},
{x:14, z:2, orientation:'right'},
{x:14, z:4, orientation:'front'},
{x:14, z:4, orientation:'left'},
{x:14, z:8, orientation:'back'},
{x:14, z:8, orientation:'front'},
{x:14, z:8, orientation:'left'},
{x:14, z:8, orientation:'right'},
{x:15, z:4, orientation:'front'}
];