wiedźmin - pudełko na karty, dodałem dziurę w podstawie i pokrywce żeby dało się łatwiej podejrzeć karty neptune 4 camera mount - nowa kamera, do szafki BROR neptune 4 filament... - przesunąłem detektor filamentu do głowicy, więc te modele są helperami żeby 1. trzymać detektor oraz 2. trzymać obcinaczkę do filamentu Oliwka pierścień - dla taty Oliwki inny rozmiar Tłumik - dla seby thumb rest - 1911 ulepszony
39 lines
1.2 KiB
OpenSCAD
39 lines
1.2 KiB
OpenSCAD
include <BOSL2/std.scad>
|
|
|
|
down(7.3) left(20) back(0.35) import("/home/sasza/Pobrane/1.stl", center=true);
|
|
|
|
t = 1.5;
|
|
frame_dist = 0.4;
|
|
|
|
thumb_size = [12,14,t];
|
|
thumb_fwd = 10;
|
|
thumb_up = 2;
|
|
|
|
chain_hull() {
|
|
cyl(d=8.5, h=2.22, anchor=TOP, $fn=36);
|
|
down(t - frame_dist) right(thumb_fwd) fwd(thumb_up) zrot(180+45)
|
|
cuboid([t,thumb_size[1],t], anchor=LEFT+BOTTOM);
|
|
}
|
|
|
|
hinge_d = 2.5;
|
|
hinge_hole = 0.8;
|
|
hinge_num = 4;
|
|
hinge_h = 3;
|
|
|
|
down(t - frame_dist) right(thumb_fwd) fwd(thumb_up) zrot(180+45) xrot(-90) difference() {
|
|
down(thumb_size[1]/2) right(hinge_d/2) fwd(hinge_d/2 + t + 0.1) for(i=[0 : hinge_num]) {
|
|
up(i * thumb_size[1] / hinge_num)
|
|
if(i%2==0) {
|
|
back(0.25) cuboid([hinge_d,hinge_d+0.5,hinge_h], rounding=1, edges="Z");
|
|
} else {
|
|
left(0.25) cuboid([hinge_d+0.5,hinge_d,hinge_h], rounding=1, edges="Z");
|
|
|
|
}
|
|
}
|
|
up(0) right(hinge_d/2) fwd(hinge_d/2 + t + 0.1)
|
|
cyl(d=hinge_hole, h=thumb_size[1]*2, $fn=36);
|
|
}
|
|
|
|
right(thumb_fwd) fwd(thumb_up) zrot(180+45) down(t - frame_dist) yrot(-90) down(t)
|
|
up(hinge_d/2 + t/2)
|
|
cuboid(thumb_size, anchor=LEFT+BOTTOM, rounding=t/2, edges=["X","Z", RIGHT]);
|