kleine aanpassingen

This commit is contained in:
2025-12-07 21:50:00 +01:00
parent e0224e066f
commit cc5a79a116

View File

@@ -6,12 +6,13 @@ set_port(3939)
b = 17 b = 17
h = 7 h = 7
l = 50 l = 50
dikte = 2.4
with BuildPart() as clamp: with BuildPart() as clamp:
with BuildSketch() as sk_clamp: with BuildSketch() as sk_clampbase:
Rectangle(b, l) Rectangle(b, l)
fillet(sk_clamp.vertices(), radius=1.2) fillet(sk_clampbase.vertices(), radius=1.2)
extrude(amount=2.4) extrude(amount=dikte)
show_all() show_all()