Reorganize around function/purpose rather than file type.

This commit is contained in:
2024-04-07 18:49:47 -05:00
parent 42e78ed35e
commit d4af5d3c36
141 changed files with 101779 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
include <lib/cable_sleeve.scad>;
epsilon = 0.01;
laptopThickness = 16.35;
clipLength = 6;
cableDiameter = 3.75;
wallThickness = 3;
rotate([0, 0, 30])
cableSleeve(cableDiameter = cableDiameter, length = clipLength);
translate([-2, 3, 0])
color("SlateGrey")
cube([wallThickness, wallThickness, clipLength]);
translate([laptopThickness/-2 - wallThickness, 5, 0])
color("DarkOliveGreen")
cube([laptopThickness + 2*wallThickness, wallThickness, clipLength]);
translate([laptopThickness/-2, 5, 8])
color("LightSalmon")
cube([laptopThickness, wallThickness, clipLength]);
translate([laptopThickness/-2 - wallThickness - 0.2, 5, 0])
color("RoyalBlue")
//rotate([0, 0, -2])
cube([wallThickness, 4*wallThickness, clipLength]);
translate([laptopThickness/2 + 0.2, 5, 0])
color("RoyalBlue")
//rotate([0, 0, 2])
cube([wallThickness, 4*wallThickness, clipLength]);