-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
box_lid.json
78 lines (78 loc) · 1.71 KB
/
box_lid.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"variables": ["height", "width", "depth", "tab-size", "lid-size"],
"width": "(width + depth) * 2",
"height": "(depth + height) * 2 + lid-size * 1.5",
"offset-x": "",
"offset-y": "lid-size / 2 - height",
"root": {
"type": "box",
"id": 4,
"width": "width",
"height": "height",
"children": {
"top": {
"type": "box",
"id": 1,
"size": "depth",
"children": {
"top": {
"type": "box",
"id": 6,
"size": "lid-size"
},
"right": {
"type": "triangle-left",
"size": "lid-size",
"children": {
"top": "tab(tab-size, tab-size)"
}
},
"left": {
"type": "triangle-right",
"size": "lid-size",
"children": {
"top": "tab(tab-size, tab-size)"
}
}
}
},
"right": {
"type": "box",
"id": 2,
"size": "depth",
"children": {
"right": "tab(width/2, 0)"
}
},
"left": {
"type": "box",
"id": 3,
"size": "depth",
"children": {
"left": "tab(width/2, 0)"
}
},
"bottom": {
"type": "box",
"id": 5,
"size": "depth",
"children": {
"left": "tab(height, 0)",
"right": "tab(height, 0)",
"bottom": {
"type": "box",
"id": 0,
"size": "height",
"children": {
"bottom": {
"type": "box",
"id": 7,
"size": "lid-size/2"
}
}
}
}
}
}
}
}