Read time: 0.0 minutes (1 words)

part: covering

Design Notes

(None)

part Design File

wing/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)

wing/center/covering/cover_points.scad
 1g_pts = [
 2    [
 3        [0.00, 0.00, -0.00],[0.00, 12.00, -0.00]
 4    ],
 5    [
 6        [0.25, 0.00, 0.04],[0.25, 12.00, 0.04]
 7    ],
 8    [
 9        [0.50, 0.00, 0.07],[0.50, 12.00, 0.07]
10    ],
11    [
12        [0.75, 0.00, 0.10],[0.75, 12.00, 0.10]
13    ],
14    [
15        [1.00, 0.00, 0.13],[1.00, 12.00, 0.13]
16    ],
17    [
18        [1.25, 0.00, 0.15],[1.25, 12.00, 0.15]
19    ],
20    [
21        [1.50, 0.00, 0.17],[1.50, 12.00, 0.17]
22    ],
23    [
24        [1.75, 0.00, 0.18],[1.75, 12.00, 0.18]
25    ],
26    [
27        [2.00, 0.00, 0.19],[2.00, 12.00, 0.19]
28    ],
29    [
30        [2.25, 0.00, 0.20],[2.25, 12.00, 0.20]
31    ],
32    [
33        [2.50, 0.00, 0.20],[2.50, 12.00, 0.20]
34    ],
35    [
36        [2.75, 0.00, 0.20],[2.75, 12.00, 0.20]
37    ],
38    [
39        [3.00, 0.00, 0.19],[3.00, 12.00, 0.19]
40    ],
41    [
42        [3.25, 0.00, 0.18],[3.25, 12.00, 0.18]
43    ],
44    [
45        [3.50, 0.00, 0.17],[3.50, 12.00, 0.17]
46    ],
47    [
48        [3.75, 0.00, 0.15],[3.75, 12.00, 0.15]
49    ],
50    [
51        [4.00, 0.00, 0.13],[4.00, 12.00, 0.13]
52    ],
53    [
54        [4.25, 0.00, 0.10],[4.25, 12.00, 0.10]
55    ],
56    [
57        [4.50, 0.00, 0.07],[4.50, 12.00, 0.07]
58    ],
59    [
60        [4.75, 0.00, 0.04],[4.75, 12.00, 0.04]
61    ],
62    [
63        [5.00, 0.00, -0.00],[5.00, 12.00, -0.00]
64    ]
65];