mirror of
https://github.com/gumyr/build123d.git
synced 2025-12-15 15:20:37 -08:00
More removal of non-generic
This commit is contained in:
parent
b3383f2327
commit
b7b2aeedc5
7 changed files with 7 additions and 47 deletions
|
|
@ -54,7 +54,7 @@ with BuildPart(workplane=Plane.named("XZ")) as rail:
|
|||
inclusive=(False, False),
|
||||
)
|
||||
)
|
||||
FilletSketch(*inside_vertices, radius=fillet)
|
||||
Fillet(*inside_vertices, radius=fillet)
|
||||
outside_vertices = list(
|
||||
filter(
|
||||
lambda v: (v.Y == 0.0 or v.Y == height)
|
||||
|
|
@ -62,7 +62,7 @@ with BuildPart(workplane=Plane.named("XZ")) as rail:
|
|||
din.vertices(),
|
||||
)
|
||||
)
|
||||
FilletSketch(*outside_vertices, radius=fillet + thickness)
|
||||
Fillet(*outside_vertices, radius=fillet + thickness)
|
||||
Extrude(rail_length)
|
||||
WorkplanesFromFaces(rail.faces().filter_by_axis(Axis.Z)[-1], replace=True)
|
||||
with BuildSketch() as slots:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue