Skip to content

Instantly share code, notes, and snippets.

@zef
Created May 14, 2022 06:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zef/020ab703abe8aa96bfbdda32daeb7906 to your computer and use it in GitHub Desktop.
Save zef/020ab703abe8aa96bfbdda32daeb7906 to your computer and use it in GitHub Desktop.
Watch Band Retainer in OpenSCAD
// 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