brewing/arm.scad

14 lines
352 B
OpenSCAD
Raw Normal View History

2022-05-11 15:13:53 +00:00
include <size_collection.scad>;
$fn=128;
module arm() {
translate([0,0,arm_h+cork_h/2])
rotate([0,180,0]) // flips right side up
rotate([0,0,(360-arm_degrees)/2]) // rotates to align with cork centerer
rotate_extrude(angle = arm_degrees, convexity=10)
translate([stamper_r,0,0]) {
square([wall,arm_h]);
circle(wall);
}
}
arm();