Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $fn = 120;
- use <threadlib/threadlib.scad>
- type = "M12x1";
- turns = 11;
- // Bolt
- union()
- {
- translate([0,0,1])
- bolt(type, turns);
- cylinder(r=10, h=4);
- }
- // Plate/nut to screw into. Rounded corners for comfort.
- w = 10;
- points = [[w,w,0],[-w,w,0],[-w,-w,0],[w,-w,0]];
- translate([30,0,0])
- difference()
- {
- hull()
- for (i = points)
- {
- translate(i)
- sphere(d=4);
- }
- translate([0,0,-5])
- tap(type, turns=turns);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement