diff options
author | Elena of Valhalla'' Grandi <valhalla@trueelena.org> | 2014-04-19 15:28:07 +0200 |
---|---|---|
committer | Elena of Valhalla'' Grandi <valhalla@trueelena.org> | 2014-04-19 15:28:07 +0200 |
commit | 76c9a21e662b8face9ca6140ba9b45a3df98cd1b (patch) | |
tree | d3bc445d3beeb987bff96c992f560afb0b3d583b /parts/foot-60.scad | |
parent | ac52ad9e17532abba5e6d6ca25d3a2d15ede59a2 (diff) |
Migrated foot to modular design
Diffstat (limited to 'parts/foot-60.scad')
-rw-r--r-- | parts/foot-60.scad | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/parts/foot-60.scad b/parts/foot-60.scad new file mode 100644 index 0000000..5aa11e5 --- /dev/null +++ b/parts/foot-60.scad @@ -0,0 +1,18 @@ + +include <../lib/connectors.scad> + +radius = 8.25; +wall = 6; +len = 40; +foot_radius = 30; +foot_height = 8; +angle = 30; +hole_radius = 3; +hole_dist = 8; + +end = false; +hole = true; +circlet = true; + +foot(radius,wall,len,foot_radius,foot_height,angle,hole_radius,hole_dist,end=end,hole=hole,circlet=circlet); + |