mirror of
https://github.com/gumyr/build123d.git
synced 2025-12-06 02:30:55 -08:00
intro ex24 remove unnecessary parens
This commit is contained in:
parent
a2624e9497
commit
e9d244fc3a
1 changed files with 1 additions and 1 deletions
|
|
@ -553,7 +553,7 @@ length, width, thickness = 80.0, 60.0, 10.0
|
||||||
|
|
||||||
with BuildPart() as ex24:
|
with BuildPart() as ex24:
|
||||||
Box(length, length, thickness)
|
Box(length, length, thickness)
|
||||||
with BuildSketch((ex24.faces().group_by(Axis.Z)[0])[0]) as ex24_sk:
|
with BuildSketch(ex24.faces().group_by(Axis.Z)[0][0]) as ex24_sk:
|
||||||
Circle(length / 3)
|
Circle(length / 3)
|
||||||
with BuildSketch(ex24_sk.faces()[0].offset(length / 2)) as ex24_sk2:
|
with BuildSketch(ex24_sk.faces()[0].offset(length / 2)) as ex24_sk2:
|
||||||
Rectangle(length / 6, width / 6)
|
Rectangle(length / 6, width / 6)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue