complementing kinematic with cover

This commit is contained in:
2021-11-17 19:57:32 +01:00
parent 88cdff3ef2
commit 007822a845
2 changed files with 9 additions and 3 deletions

View File

@@ -4,12 +4,13 @@ module deckel(){
height = 0.5; height = 0.5;
dia1 = 1.7; dia1 = 1.7;
dia2 = 1.5; dia2 = 1.5;
cyl_h = 2;
cube([25,20,height],true); cube([25,20,height],true);
translate([11.5,0,0])cube([5,5,height],true); translate([11.5,0,0])cube([5,5,height],true);
translate([13+1,0,0])cylinder(h=height,d=5,center=true); translate([13+1,0,0])cylinder(h=height,d=5,center=true);
translate([2-13+25,0,1])cylinder(h=1.5,d=dia1,center=true); translate([2-13+25,0,1])cylinder(h=cyl_h,d=dia1,center=true);
translate([2-13,-8.5,1])cylinder(h=1.5,d=dia2,center=true); translate([2-13,-8.5,1])cylinder(h=cyl_h,d=dia2,center=true);
translate([2-13, 8.5,1])cylinder(h=1.5,d=dia2,center=true); translate([2-13, 8.5,1])cylinder(h=cyl_h,d=dia2,center=true);
} }
deckel(); deckel();

View File

@@ -1,3 +1,4 @@
use <Deckel.scad>;
$fn=128; $fn=128;
module coupler_holder(){ module coupler_holder(){
@@ -17,6 +18,8 @@ module fixed_part(){
difference(){ difference(){
union(){ union(){
translate([0,0,0.2])cube([l2,20.5,1.6],true); translate([0,0,0.2])cube([l2,20.5,1.6],true);
translate([11.5,0,0.2])cube([5,5,1.6],true);
translate([14,0,0.2]) cylinder(d=5,h=1.6,center=true);
translate([3,0,-3.2])cylinder(d=5,h=3); translate([3,0,-3.2])cylinder(d=5,h=3);
} }
@@ -37,6 +40,8 @@ module fixed_part(){
} }
translate([3,0,0])cylinder(d=2,h=10,center=true); translate([3,0,0])cylinder(d=2,h=10,center=true);
translate([3,0,-1])cylinder(d=3,h=10); translate([3,0,-1])cylinder(d=3,h=10);
translate([0,0,1.25])rotate([180,0,0]) deckel();
} }
} }