From c4ad5feeff5816d2956485916c6e269f33cb0385 Mon Sep 17 00:00:00 2001 From: sasza Date: Thu, 19 Jun 2025 21:19:35 +0200 Subject: [PATCH] =?UTF-8?q?Oliwka=20-=20wyci=C4=99ty=20srodek=20=C5=BCeby?= =?UTF-8?q?=20mniej=20materia=C5=82o?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Oliwka/na_kamyczki.scad | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Oliwka/na_kamyczki.scad b/Oliwka/na_kamyczki.scad index 8999f9b..3940bd1 100644 --- a/Oliwka/na_kamyczki.scad +++ b/Oliwka/na_kamyczki.scad @@ -8,6 +8,9 @@ height_up = 15; wall_thickness = 2; shelf_thickness = 1; +// space left - ile od krawędzi wyciąć środek +sl = 20; + include include @@ -26,6 +29,8 @@ total_height = height_up + height_down + shelf_thickness; translate([width/2, length/2, height_up]) translate([wt,wt,height_down + st + 0.1]) cuboid([width, length, height_up * 2], rounding=10); + translate([sl, sl,0]) + cube([width - sl*2, length - sl*2, total_height*2]); }