Created
March 27, 2025 16:43
-
-
Save ali1234/a8b92758033ab8b6d46194486437f0d7 to your computer and use it in GitHub Desktop.
flat spring
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module spring(width, id, od, count) { | |
for(i = [0 : count]) { | |
translate([-width/2, i*(od+id)]) square([width, od-id]); | |
if (i < count) { | |
mirror([i%2, 0, 0]) | |
translate([-width/2, (i*(od+id))+(od)]) | |
difference() { | |
circle(od); | |
circle(id); | |
translate([0, -od*1.5]) square(od*3); | |
} | |
} | |
} | |
} | |
linear_extrude(height=10) | |
spring(width=40, id=5, od=10, count=9); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I guess I messed up the names. id and od are actually the radii of the turns.