aboutsummaryrefslogtreecommitdiff
path: root/structure/parts/foot.scad
diff options
context:
space:
mode:
Diffstat (limited to 'structure/parts/foot.scad')
-rw-r--r--structure/parts/foot.scad23
1 files changed, 23 insertions, 0 deletions
diff --git a/structure/parts/foot.scad b/structure/parts/foot.scad
new file mode 100644
index 0000000..ac513dd
--- /dev/null
+++ b/structure/parts/foot.scad
@@ -0,0 +1,23 @@
+include <../conf/parameters.scad>
+
+module foot() {
+
+color("white")
+difference() {
+
+ rotate([0,90,0])
+ difference() {
+ cylinder(foot_length,d=foot_outer, center=true);
+ cylinder(foot_length+epsilon,d=foot_inner, center=true);
+ }
+
+ translate([-stand_width/2,0,0])
+ cylinder(foot_outer,d=stand_diameter,center=false);
+
+ translate([stand_width/2,0,0])
+ cylinder(foot_outer,d=stand_diameter,center=false);
+
+}
+}
+
+foot();