Skip to content

Instantly share code, notes, and snippets.

@ali1234
Created March 27, 2025 16:43
Show Gist options
  • Save ali1234/a8b92758033ab8b6d46194486437f0d7 to your computer and use it in GitHub Desktop.
Save ali1234/a8b92758033ab8b6d46194486437f0d7 to your computer and use it in GitHub Desktop.
flat spring
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);
@ali1234
Copy link
Author

ali1234 commented Mar 28, 2025

I guess I messed up the names. id and od are actually the radii of the turns.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment