-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
57 lines (56 loc) · 1.26 KB
/
config.json
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
{
"init_angles": [30,30,0],
"cube_scale": 100,
"piece_scale": 47,
"side_colors": {
"w": [220,220,220],
"g": [110,235,90],
"r": [255,40,40],
"b": [100,185,225],
"o": [255,110,20],
"y": [255,240,60],
"n": [20,20,20]
},
"sides_pnt_index": [
[4,0,1,5],
[0,2,6,4],
[0,1,3,2],
[5,1,3,7],
[4,5,7,6],
[2,3,7,6]
],
"sides_relative_coords": [
[0,1,0],
[0,0,1],
[1,0,0],
[0,0,-1],
[-1,0,0],
[0,-1,0]
],
"verticies_relative_coords": [
[1,1,1],
[1,1,-1],
[1,-1,1],
[1,-1,-1],
[-1,1,1],
[-1,1,-1],
[-1,-1,1],
[-1,-1,-1]
],
"groups": [
"urf","umf","ulf","urs","ums","uls","urb","umb","ulb",
"erf","emf","elf","ers", "els","erb","emb","elb",
"drf","dmf","dlf","drs","dms","dls","drb","dmb","dlb"
],
"operations": {
"u": {"ax":1, "s":-1},
"d": {"ax":1, "s":1},
"r": {"ax":0, "s":-1},
"l": {"ax":0, "s":1},
"f": {"ax":2, "s":-1},
"b": {"ax":2, "s":1},
"m": {"ax":0, "s":-1},
"e": {"ax":1, "s":-1},
"s": {"ax":2, "s":-1}
}
}