Skip to content

Instantly share code, notes, and snippets.

@werelax
Created April 28, 2016 20:26
Show Gist options
  • Save werelax/be440783c8fbefc1e502aa88cabd6574 to your computer and use it in GitHub Desktop.
Save werelax/be440783c8fbefc1e502aa88cabd6574 to your computer and use it in GitHub Desktop.
Boton Simplon
// pincho
cylinder(5, 50, 50, true);
translate([0, 0, -100]) cylinder(100, 5, 5);
// tubito
translate([0, 0, -150]) {
difference() {
cylinder(30, 10, 10, true);
translate([0, 0, 5]) cylinder(60, 8, 8, true);
}
}
// muelle
translate([0, 0, -120]) linear_extrude(height = 20, center = false, convexity = 10, twist = 2000)
translate([15, 0, 0])
circle(r = 1);
// zocalo
translate ([0, 0, -150]) {
difference() {
cube([130, 130, 30], true);
translate([0, 0, 5]) union() {
cylinder(25, 50, 50, true);
translate([0,0,-40]) cylinder(50, 10, 10);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment