diff options
| author | feurig <don@suspectdevices.com> | 2022-05-11 22:31:38 -0700 |
|---|---|---|
| committer | feurig <don@suspectdevices.com> | 2022-05-11 22:31:38 -0700 |
| commit | bda78cc7becda1a0d2c8afcbeecb43ded588e325 (patch) | |
| tree | c356928095839b7962805211a941e8a0030a7b9d | |
| parent | 6d593e16985099c5dbefb03c6bd90f91ce5b633b (diff) | |
Start Beltclip Project.
| -rw-r--r-- | beltclip.scad | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/beltclip.scad b/beltclip.scad new file mode 100644 index 0000000..9f335c4 --- /dev/null +++ b/beltclip.scad @@ -0,0 +1,22 @@ +// -------------------------------------------------------------beltclip.scad +// +// +// +// +$fa = 1; +$fs = 0.4; +clipLength=32.00; +clipHeight=3.0; +clipWidth=22.0; +clipHoleWidth=11.0; +clipHoleLength=22.0; + +difference (){ + +translate([-(clipWidth/2.0),0,0]){ + cube([clipWidth,clipLength,clipHeight], center=false); +} +translate([-(clipHoleWidth/2.0),(clipLength-clipHoleLength)/2.0,-2.0]){ + cube([clipHoleWidth,clipHoleLength,clipHeight+4], center=false); +} +}
\ No newline at end of file |
