aboutsummaryrefslogtreecommitdiff
path: root/RecordHolder/record_holder.scad
diff options
context:
space:
mode:
Diffstat (limited to 'RecordHolder/record_holder.scad')
-rw-r--r--RecordHolder/record_holder.scad34
1 files changed, 34 insertions, 0 deletions
diff --git a/RecordHolder/record_holder.scad b/RecordHolder/record_holder.scad
new file mode 100644
index 0000000..81f799e
--- /dev/null
+++ b/RecordHolder/record_holder.scad
@@ -0,0 +1,34 @@
+// Record Holder
+// Tested with 3M Picture Hanging Velcro Command Strips
+
+// Variables
+// 1 unit = 1 mm
+length = 190; // 2x command strips
+back_height = 20; // Side facing the wall
+radius = back_height;
+thickness = 6;
+
+$fn = $preview ? 10 : 100;
+
+// Main Body
+cube([length, 10, 20]);
+
+// Base Layer
+cube([length, radius + 2 * thickness, thickness]);
+
+// Middle Layer
+translate([0, radius + 2 * thickness, 0]) {
+ cube([length, 3.2, thickness + 6.4]);
+}
+
+// Top Layer with Hole
+translate([0, thickness, thickness]) {
+ difference() {
+ cube([length, radius, back_height - thickness]);
+ translate([0, radius, radius]) {
+ rotate([0, 90, 0]) {
+ cylinder(h = length, r = radius, center = false);
+ }
+ }
+ }
+} \ No newline at end of file