Add old earring file

This commit is contained in:
Kienan Stewart 2025-08-31 11:03:28 -04:00
parent 9d23fc00bd
commit c0e8bda186
1 changed files with 14 additions and 0 deletions

14
earring.scad Normal file
View File

@ -0,0 +1,14 @@
use <lib/smooth_prim.scad>
HEIGHT=10; // mm
WIDTH=10; // mm
LOBE_THICKNESS = 6; // mm
THICKNESS=(WIDTH-LOBE_THICKNESS)/2; // mm
difference() {
SmoothHollowCube(HEIGHT, THICKNESS, 0);
translate([2,0,0]) {
SmoothWall(LOBE_THICKNESS, HEIGHT+2, THICKNESS);
};
}