You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
352 B
14 lines
352 B
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(); |