mirror of
https://github.com/phooky/Apple-410.git
synced 2024-10-31 21:07:02 +00:00
rough version of plotter head
This commit is contained in:
parent
b98008f113
commit
2a92ffd36b
@ -1,5 +1,6 @@
|
||||
notch_width = 2.5;
|
||||
|
||||
$fa = 8;
|
||||
$fs = 0.5;
|
||||
module peg_hole() {
|
||||
union() {
|
||||
difference() {
|
||||
@ -30,9 +31,26 @@ module shell() {
|
||||
}
|
||||
}
|
||||
|
||||
module pen(which) {
|
||||
rotate([0,0,which*90]) {
|
||||
translate([10,0,4]) rotate([0,90,0]) {
|
||||
cylinder(h=10,d=4,center=false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
module pens() {
|
||||
for (i=[0:4]) {
|
||||
pen(i);
|
||||
}
|
||||
}
|
||||
|
||||
difference() {
|
||||
union() {
|
||||
shell();
|
||||
translate([0,0,-0.001]) {
|
||||
}
|
||||
pens();
|
||||
translate([0,0,-0.005]) {
|
||||
peg_hole();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user