Skip to content

Instantly share code, notes, and snippets.

@majabojarska
Last active May 7, 2022 21:06
Show Gist options
  • Save majabojarska/6da240b3562c25ac2b46e92476dc3369 to your computer and use it in GitHub Desktop.
Save majabojarska/6da240b3562c25ac2b46e92476dc3369 to your computer and use it in GitHub Desktop.
IKEA Skarsta crank shim
// 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);
};
};
};
@majabojarska
Copy link
Author

image

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