diff options
| author | feurig <don@suspectdevices.com> | 2022-05-12 22:14:05 -0700 |
|---|---|---|
| committer | feurig <don@suspectdevices.com> | 2022-05-12 22:14:05 -0700 |
| commit | 7a01b83fd5baf775b62b4f77d200fa59dae931dc (patch) | |
| tree | 58a87af065a371591f1d218f8fa1038c419e23e3 | |
| parent | c494b404a88faeb8df4255f5d17a8d215297f97e (diff) | |
Second Adjustment
| -rw-r--r-- | beltclip.scad | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/beltclip.scad b/beltclip.scad index 32403d3..5947fff 100644 --- a/beltclip.scad +++ b/beltclip.scad @@ -13,7 +13,8 @@ clipHoleLength=22.0; clipHandleWidth=52.0; clipHandleLength=3.0; clipHandleHeight=12.0; -wedgeHeight=5.0; +clipHandleOffset=-6.0; +wedgeHeight=8.0; wedgeWidth=42.0; union(){ difference (){ @@ -25,19 +26,19 @@ union(){ cube([clipHoleWidth,clipHoleLength,clipHeight+4], center=false); } } - translate([-(clipHandleWidth/2.0),-9,0]){ + translate([-(clipHandleWidth/2.0),(clipHandleOffset),0]){ cube([clipHandleWidth,clipHandleLength,clipHandleHeight], center=false); } CubePoints = [ - [ -21.0, -9.0, 0 ], //0 - [ -11.0, 0, 0 ], //1 - [ 11.0, 0, 0 ], //2 - [ 21.0, -9.0, 0 ], //3 - [ -21.0, -9.0, 5 ], //4 - [ -11.0, 0, 3.0 ], //5 - [ 11.0, 0, 3.0 ], //6 - [ 21.0, -9, 5 ]]; //7 + [ -(wedgeWidth/2.0), (clipHandleOffset), 0 ], //0 + [ -(clipWidth/2.0), 0, 0 ], //1 + [ (clipWidth/2.0), 0, 0 ], //2 + [ (wedgeWidth/2.0), (clipHandleOffset), 0 ], //3 + [ -(wedgeWidth/2.0), (clipHandleOffset), wedgeHeight ], //4 + [ -(clipWidth/2.0), 0, (clipHeight) ], //5 + [ (clipWidth/2.0), 0, (clipHeight) ], //6 + [ (wedgeWidth/2.0), (clipHandleOffset), wedgeHeight ]]; //7 CubeFaces = [ [0,1,2,3], // bottom |
