Você está no 3DFinder
Buscamos em Thingiverse, MakerWorld e Printables ao mesmo tempo para te dar o melhor de cada uma.
Descrição
Tiny OpenSCAD module to print off a washer of any size. Just open up the .scad file and adjust the module parameters to suit your need.
Instruções
// inner radius
inner = 6;
// outer radius
outer = 100;
// thickness
thickness = 2;
module washer (inner, outer, thickness) {
difference() {
cylinder(d=outer, h=thickness, $fn=60);
translate([0,0,-thickness])
cylinder(d=inner, h=thickness*3, $fn=60);
};
}
// dimensions in mm
washer (inner, outer, thickness);
145
Curtidas
0
Downloads
253
Coleções
1
Impressões
Tags
cusomizable
customizer
openscad
washer
Licença
Creative Commons - Attribution - Share Alike