Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/gumyr/build123d into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
gumyr committed Jan 20, 2024
2 parents 5f93a2d + edca151 commit 61a3610
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/advantages.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ python context manager.
with BuildPart() as pillow_block:
with BuildSketch() as plan:
Rectangle(width, height)
Fillet(*plan.vertices(), radius=fillet)
Extrude(thickness)
fillet(plan.vertices(), radius=fillet)
extrude(thickness)
...
The use of the standard `with` block allows standard python instructions to be
Expand Down Expand Up @@ -68,7 +68,7 @@ features to these points without knowing their numeric values.
...
l5 = Polyline(...)
l6 = Polyline(...)
Spline(l5 @ 1, l6 @ 0, tangents=(l5 % 1, l6 % 0))
spline(l5 @ 1, l6 @ 0, tangents=(l5 % 1, l6 % 0))
Last Operation Objects
Expand Down

0 comments on commit 61a3610

Please sign in to comment.