Skip to content

Commit

Permalink
advantages.rst -> More de-capitalization of methods
Browse files Browse the repository at this point in the history
Sweep, Extrude, Fillet are renamed to their lowercase variants to reflect the current naming
  • Loading branch information
jdegenstein authored Jan 16, 2024
1 parent a433707 commit edca151
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 edca151

Please sign in to comment.