Last active
June 26, 2023 00:07
-
-
Save abfo/4fdb2460c2a91518035c1e459a44ce2d to your computer and use it in GitHub Desktop.
SCAD design for a 3D printed Kong XL Holder. See https://ithoughthecamewithyou.com/post/3d-printing-a-kong-xl-holder for details.
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
difference() { | |
cube(size=[86,86,70]); | |
translate([43,43,10]) { | |
cylinder(h=35, d=60); | |
translate([0,0,30]){ | |
cylinder(h=35, d=78); | |
} | |
} | |
translate([-2,-2,10]) { | |
cube(size=[40,40,70]); | |
} | |
translate([48,-2,10]) { | |
cube(size=[40,40,70]); | |
} | |
translate([-2,48,10]) { | |
cube(size=[40,40,70]); | |
} | |
translate([48,48,10]) { | |
cube(size=[40,40,70]); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment