-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patharound.hfd
More file actions
41 lines (41 loc) · 1.28 KB
/
around.hfd
File metadata and controls
41 lines (41 loc) · 1.28 KB
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
{
"imports": [
{"path": "designs/common/rectangle.hfd"}
],
"params": {
"offset": ".0035",
"material_width": 20,
"material_height": 12,
"around_radius": 2,
"around_num_edges": 9
},
"parts": [
{
"components": [
{
"type" : "around",
"num_edges": "around_num_edges",
"radius": "around_radius",
"repeatable": {
"type": "draw",
"transforms": [
// move to the center of the length
{
"type" : "move",
"to" : "around__length / 2, 0",
"handle" : "$BOTTOM_MIDDLE"
}
],
"commands": [
{
"command": "rectangle",
"width": "around__length - .3",
"height": ".2"
}
]
}
}
]
}
]
}