From b25f0366c0a468353fb2964cd71b2f294d2854f9 Mon Sep 17 00:00:00 2001 From: Shy Date: Thu, 2 Jun 2022 21:30:35 +0200 Subject: [PATCH] Disable support structures by default. --- back.scad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/back.scad b/back.scad index 25f954f..54f7e19 100644 --- a/back.scad +++ b/back.scad @@ -59,7 +59,7 @@ */ // Stützstrukturen. -support = true; +support = false; // Abgerundete Kanten (aufwendig). rounded_corners = true; @@ -530,7 +530,7 @@ if (support && !threaded_insert) { color(color_special) for (i = [0:3]) { translate([drill_pos[i][0], drill_pos[i][1], 0]) - support(0.5); + support(0.75); } }