Skip to content

Instantly share code, notes, and snippets.

@mmaridev
Created December 12, 2018 19:48
Show Gist options
  • Save mmaridev/d469baf91487d8a1b962ab3a792f5d4b to your computer and use it in GitHub Desktop.
Save mmaridev/d469baf91487d8a1b962ab3a792f5d4b to your computer and use it in GitHub Desktop.
OpenSCAD Project to extrude a png logo on a circular keyring
cylinder(2, d=32);
difference() {
translate([-12,-9,-2]) {
scale(0.17,0.17,1)
surface(file="/tmp/logo.png");
}
translate([-20,-20,-3])
cube([40,40,3]);
translate([-20,-20,4])
cube([40,40,15]);
}
translate([0,17,0]) {
difference() {
cylinder(2,d=7);
cylinder(2,d=5);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment