From efd71d3e8dacd5a66c3a6a871af6dcb877496b52 Mon Sep 17 00:00:00 2001 From: "Jan \"Yenya\" Kasprzak" Date: Sun, 14 Apr 2024 19:24:38 +0200 Subject: [PATCH] cable clip --- cable-clip.scad | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 cable-clip.scad diff --git a/cable-clip.scad b/cable-clip.scad new file mode 100644 index 0000000..e0b104a --- /dev/null +++ b/cable-clip.scad @@ -0,0 +1,22 @@ +include + +wall = 1.5; +cable_w = 5; +cable_h = 2.5; +clip_w = 7; +clip_l = 7; +screw_d = 3.5; + +difference() { + cube([cable_w + 2*wall, cable_h + wall, clip_w]); + translate([wall, -eps, -eps]) + cube([cable_w, cable_h+eps, clip_w+2*eps]); +} + +difference() { + Tx(-clip_l) + cube([clip_l, wall, clip_w]); + translate([-clip_l/2, -eps, clip_w/2]) + Rx(-90) + cylinder(r = screw_d/2, h = wall+2*eps, $fn = 6); +} -- 2.43.0