Browse Source

First version brought to Mama

master
Maximilian Stiefel 4 years ago
parent
commit
ebc35c0333
  1. 12
      kblock_ext/kblock_ext.scad

12
kblock_ext/kblock_ext.scad

@ -1,3 +1,4 @@
include <fillets_and_rounds.scad>
h=7; h=7;
r0=3; r0=3;
$fn=50; $fn=50;
@ -7,15 +8,22 @@ magnet_play=0.5;
magnet_l=19.5+magnet_play; magnet_l=19.5+magnet_play;
magnet_w=5.8+magnet_play/5.0; magnet_w=5.8+magnet_play/5.0;
magnet_h=2.7+magnet_play; magnet_h=2.7+magnet_play;
magnet_hole_h=0.92*h; magnet_hole_h=0.86*h;
screw_play=0.2; screw_play=0.2;
// Let's give one millimeter more // Let's give one millimeter more
screw_head_r=6.8/2 + 5*screw_play; screw_head_r=6.8/2 + 5*screw_play;
screw_thread_r=3.5/2 + screw_play; screw_thread_r=3.5/2 + screw_play;
screw_head_h=2.5 + screw_play; screw_head_h=2.5 + screw_play;
color("white", 1.0) { color("white", 1.0) {
// add_fillets(R=2) {
difference() difference()
{ {
union()
{
translate([0.15*l, 0.001, -0.45*h])
rotate([90, 0, 0])
linear_extrude(height = h/10)
text("stiefel.tech", font = "Liberation Sans", size=6.5);
translate([r0, r0, 0]) translate([r0, r0, 0])
hull() { hull() {
for (x=[0:1:1]) { for (x=[0:1:1]) {
@ -25,6 +33,7 @@ color("white", 1.0) {
} }
} }
} }
}
union() { union() {
translate([0.1*l, w/2, 0]) translate([0.1*l, w/2, 0])
cylinder(h+0.001, r=screw_thread_r, center=true); cylinder(h+0.001, r=screw_thread_r, center=true);
@ -47,3 +56,4 @@ color("white", 1.0) {
} }
} }
} }
//}

Loading…
Cancel
Save