Read time: 0.0 minutes (1 words)

part: covering

Design Notes

(None)

part Design File

wing/left_tip/covering/covering.scad
 1use <function_grapher.scad>;
 2include <./cover_points.scad>
 3include <colors.scad>
 4
 5thickness = 0.001;
 6style = "FACES";  // LINES to show surface grid
 7
 8module covering() {
 9  color(GLASS_Blue)
10  function_grapher(g_pts, thickness, style);
11}
12
13
14covering();

Component Data File(s)

wing/left_tip/covering/cover_points.scad
 1g_pts = [
 2    [
 3        [0.00, 0.00, 0.06],[0.00, -1.47, 0.03]
 4    ],
 5    [
 6        [0.25, -0.02, 0.10],[0.25, -2.44, 0.03]
 7    ],
 8    [
 9        [0.50, -0.04, 0.12],[0.50, -2.80, 0.03]
10    ],
11    [
12        [0.75, -0.05, 0.15],[0.75, -3.03, 0.03]
13    ],
14    [
15        [1.00, -0.06, 0.17],[1.00, -3.21, 0.03]
16    ],
17    [
18        [1.25, -0.08, 0.19],[1.25, -3.33, 0.03]
19    ],
20    [
21        [1.50, -0.08, 0.21],[1.50, -3.41, 0.03]
22    ],
23    [
24        [1.75, -0.09, 0.22],[1.75, -3.46, 0.03]
25    ],
26    [
27        [2.00, -0.10, 0.23],[2.00, -3.47, 0.03]
28    ],
29    [
30        [2.25, -0.10, 0.23],[2.25, -3.47, 0.03]
31    ],
32    [
33        [2.50, -0.10, 0.24],[2.50, -3.47, 0.03]
34    ],
35    [
36        [2.75, -0.10, 0.23],[2.75, -3.47, 0.03]
37    ],
38    [
39        [3.00, -0.10, 0.23],[3.00, -3.47, 0.03]
40    ],
41    [
42        [3.25, -0.09, 0.22],[3.25, -3.47, 0.03]
43    ],
44    [
45        [3.50, -0.08, 0.21],[3.50, -3.47, 0.03]
46    ],
47    [
48        [3.75, -0.08, 0.19],[3.75, -3.47, 0.03]
49    ],
50    [
51        [4.00, -0.06, 0.17],[4.00, -3.47, 0.03]
52    ],
53    [
54        [4.25, -0.05, 0.15],[4.25, -3.47, 0.03]
55    ],
56    [
57        [4.50, -0.04, 0.12],[4.50, -3.47, 0.03]
58    ],
59    [
60        [4.75, -0.02, 0.10],[4.75, -3.47, 0.03]
61    ],
62    [
63        [5.00, 0.00, 0.06],[5.00, -3.47, 0.03]
64    ]
65];