|
@@ -7,21 +7,24 @@
|
7
|
7
|
|
8
|
8
|
// -----------------------------------------------------------
|
9
|
9
|
|
10
|
|
-$fn = 15;
|
11
|
|
-
|
12
|
|
-fan_width = 120;
|
13
|
|
-fan_depth = 25.5;
|
|
10
|
+fan_width = 120; // [1:200]
|
|
11
|
+fan_depth = 25.5; // [1:100]
|
14
|
12
|
|
15
|
|
-hole_diameter = 4;
|
|
13
|
+hole_diameter = 4; // [1:10]
|
16
|
14
|
hole_distance = 7.5; // in x and z direction
|
17
|
15
|
|
18
|
|
-wall_size = 5;
|
19
|
|
-height = 20;
|
20
|
|
-width = 25;
|
21
|
|
-base_depth = 60; // minimum fan_depth + (2 * wall_size)
|
|
16
|
+wall_size = 5; // [1:10]
|
|
17
|
+height = 20; // [1:100]
|
|
18
|
+width = 25; // [1:100]
|
|
19
|
+
|
|
20
|
+// minimum: fan_depth + (2 * wall_size)
|
|
21
|
+base_depth = 60; // [1:100]
|
22
|
22
|
|
23
|
23
|
// -----------------------------------------------------------
|
24
|
24
|
|
|
25
|
+/* [Hidden] */
|
|
26
|
+
|
|
27
|
+$fn = 15;
|
25
|
28
|
depth = fan_depth + (2 * wall_size);
|
26
|
29
|
|
27
|
30
|
// -----------------------------------------------------------
|