Read time: 0.0 minutes (1 words)

part: covering

Design Notes

(None)

part Design File

stab/center/covering/covering.scad
 1use <MMlib/covering_generator.scad>;
 2include <cover_points.scad>
 3include <MMlib/colors.scad>
 4
 5
 6thickness = 0.001;
 7
 8module covering() {
 9    color(GLASS_Blue)
10      covering_generator(g_pts, thickness);
11}
12
13covering();

Component Data File(s)

stab/center/covering/cover_points.scad
 1g_pts = [
 2    [
 3        [0.00, 0.00, -0.00],[0.00, 6.00, -0.00]
 4    ],
 5    [
 6        [0.20, 0.00, 0.02],[0.20, 6.00, 0.02]
 7    ],
 8    [
 9        [0.40, 0.00, 0.03],[0.40, 6.00, 0.03]
10    ],
11    [
12        [0.60, 0.00, 0.04],[0.60, 6.00, 0.04]
13    ],
14    [
15        [0.80, 0.00, 0.05],[0.80, 6.00, 0.05]
16    ],
17    [
18        [1.00, 0.00, 0.06],[1.00, 6.00, 0.06]
19    ],
20    [
21        [1.20, 0.00, 0.07],[1.20, 6.00, 0.07]
22    ],
23    [
24        [1.40, 0.00, 0.07],[1.40, 6.00, 0.07]
25    ],
26    [
27        [1.60, 0.00, 0.08],[1.60, 6.00, 0.08]
28    ],
29    [
30        [1.80, 0.00, 0.08],[1.80, 6.00, 0.08]
31    ],
32    [
33        [2.00, 0.00, 0.08],[2.00, 6.00, 0.08]
34    ],
35    [
36        [2.20, 0.00, 0.08],[2.20, 6.00, 0.08]
37    ],
38    [
39        [2.40, 0.00, 0.08],[2.40, 6.00, 0.08]
40    ],
41    [
42        [2.60, 0.00, 0.07],[2.60, 6.00, 0.07]
43    ],
44    [
45        [2.80, 0.00, 0.07],[2.80, 6.00, 0.07]
46    ],
47    [
48        [3.00, 0.00, 0.06],[3.00, 6.00, 0.06]
49    ],
50    [
51        [3.20, 0.00, 0.05],[3.20, 6.00, 0.05]
52    ],
53    [
54        [3.40, 0.00, 0.04],[3.40, 6.00, 0.04]
55    ],
56    [
57        [3.60, 0.00, 0.03],[3.60, 6.00, 0.03]
58    ],
59    [
60        [3.80, 0.00, 0.02],[3.80, 6.00, 0.02]
61    ],
62    [
63        [4.00, 0.00, -0.00],[4.00, 6.00, -0.00]
64    ]
65];