Skip to content

Instantly share code, notes, and snippets.

@ksmithdev
Created May 29, 2023 20:18
Show Gist options
  • Save ksmithdev/81e5ad82c10face48096b6be28dc71c6 to your computer and use it in GitHub Desktop.
Save ksmithdev/81e5ad82c10face48096b6be28dc71c6 to your computer and use it in GitHub Desktop.
Used to create a standing coin with sides
$fn=10;
union() {
difference() {
cylinder(h=4, r=12.5, center=false);
cylinder(h=1, r=10.5, center=false);
translate([0,0,3])
cylinder(h=1, r=10.5, center=false);
}
translate([0,0,3])
resize([17,17,1])
import("Side1.stl");
translate([0,0,1])
rotate([180,0,0])
resize([15,15,1])
import("Side2.stl");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment