Files
CAD-bestanden/Clips/lichtslang/17x7mm.py
2025-12-02 21:51:19 +01:00

17 lines
258 B
Python

from ocp_vscode import *
from build123d import *
set_port(3939)
b = 17
h = 7
l = 50
with BuildPart() as clamp:
with BuildSketch() as sk_clamp:
Rectangle(b, l)
fillet(sk_clamp.vertices(), radius=1.2)
extrude(amount=2.4)
show_all()