merge introductory examples for both modes

This commit is contained in:
Bernhard 2023-03-26 19:47:53 +02:00
parent 42f11313be
commit 62b7b011be
40 changed files with 623 additions and 4065 deletions

View file

@ -467,8 +467,8 @@ length, width, thickness = 80.0, 60.0, 10.0
with BuildPart() as ex20:
Box(length, width, thickness)
pln = Plane((ex20.faces().group_by(Axis.X))[0][0])
with BuildSketch(pln.offset(2 * thickness)):
plane = Plane((ex20.faces().group_by(Axis.X))[0][0])
with BuildSketch(plane.offset(2 * thickness)):
Circle(width / 3)
extrude(amount=width)
# [Ex. 20]