Files
CAD-bestanden/blokMetAfgerondeHoeken.py
2024-12-17 13:51:30 +01:00

22 lines
745 B
Python

with BuildPart() as box:
Box(5, 7.5, 2, align=Align.MIN)
far_vertex = (
box.vertices().group_by(Axis.Z)[0].group_by(Axis.X)[-1].sort_by(Axis.Y)[-1]
)
w = Vector(far_vertex).length
# Intersect with a rounded corner
with BuildPart(mode=Mode.INTERSECT) as with_corners:
with BuildSketch(Plane.XZ.rotated((0, 0, 45))) as profile:
with BuildLine() as corner:
l1 = EllipticalCenterArc(
(w - 3, 2 - 1), 3, 1, start_angle=0, end_angle=90
)
Polyline(l1 @ 1, (0, 2), (0, 0), (w, 0), l1 @ 0)
make_face()
extrude(amount=w, both=True)
mirror(about=Plane.YZ)
mirror(about=Plane.XZ)
mirror(about=Plane.XY)