From cc5a79a1169848b23d0467ff629f9d25343bf1b5 Mon Sep 17 00:00:00 2001 From: h3n3 Date: Sun, 7 Dec 2025 21:50:00 +0100 Subject: [PATCH] kleine aanpassingen --- Clips/lichtslang/17x7mm.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Clips/lichtslang/17x7mm.py b/Clips/lichtslang/17x7mm.py index 1676ff0..0b68863 100644 --- a/Clips/lichtslang/17x7mm.py +++ b/Clips/lichtslang/17x7mm.py @@ -6,12 +6,13 @@ set_port(3939) b = 17 h = 7 l = 50 +dikte = 2.4 with BuildPart() as clamp: - with BuildSketch() as sk_clamp: + with BuildSketch() as sk_clampbase: Rectangle(b, l) - fillet(sk_clamp.vertices(), radius=1.2) - extrude(amount=2.4) + fillet(sk_clampbase.vertices(), radius=1.2) + extrude(amount=dikte) show_all() \ No newline at end of file