Read time: 0.0 minutes (1 words)

part: covering

Design Notes

(None)

part Design File

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

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