Last active
December 27, 2023 01:13
-
-
Save abfo/f959cb6ee205c7bdd531e9610f4e7d23 to your computer and use it in GitHub Desktop.
OpenSCAD code for a wall mount for the Aura Carver Mat digital photo frame. Details at https://ithoughthecamewithyou.com/post/3d-printing-a-discreet-wall-mount-shelf-for-the-aura-carver-mat
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() { | |
union() { | |
cube(size=[61,85,5], center = true); | |
translate([29.5, 0 ,5]) { | |
cube(size=[2, 85, 10], center = true); | |
} | |
translate([-29.5, 0 ,15]) { | |
cube(size=[2, 85, 30], center = true); | |
} | |
} | |
rotate([0,90,0]) { | |
translate([-15,25,-35]) { | |
cylinder(h=15, d=3); | |
} | |
} | |
rotate([0,90,0]) { | |
translate([-15,-25,-35]) { | |
cylinder(h=15, d=3); | |
} | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment