Last active
May 7, 2022 21:06
-
-
Save majabojarska/6da240b3562c25ac2b46e92476dc3369 to your computer and use it in GitHub Desktop.
IKEA Skarsta crank shim
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
// IKEA Skarsta crank shim | |
$fn=100; | |
fi_in=8; | |
fi_out=15; | |
height=8; | |
fi_screw=4; | |
difference(){ | |
difference(){ | |
cylinder(h=height, d=fi_out, center=true); | |
cylinder(h=height+2,d=fi_in, center=true); | |
}; | |
union(){ | |
rotate([90,0,0]){ | |
cylinder(h=fi_out-fi_in+2, d=fi_screw+0.6); | |
}; | |
rotate([0,90,0]){ | |
cylinder(h=fi_out+2, d=fi_screw+0.6); | |
}; | |
}; | |
}; |
Author
majabojarska
commented
May 7, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment