-
-
Save zef/020ab703abe8aa96bfbdda32daeb7906 to your computer and use it in GitHub Desktop.
Watch Band Retainer in OpenSCAD
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
// https://github.com/revarbat/BOSL2/wiki | |
// | |
// Installation instructions: | |
// https://github.com/revarbat/BOSL2/wiki#installation | |
include <BOSL2/std.scad> | |
$fn = 200; | |
wall_thickness = .45*3; | |
width = 20; | |
length = 6; | |
height = 9; | |
total_wall = wall_thickness * 2; | |
difference() { | |
cuboid([width + total_wall, length + total_wall, height], rounding=1, edges="Z"); | |
cuboid([width, length, height+.1], rounding=1, edges="Z"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment