Skip to content

Commit

Permalink
Merge pull request #492 from asteppke/dev
Browse files Browse the repository at this point in the history
Small doc change: Area() to property area
  • Loading branch information
gumyr authored Jan 24, 2024
2 parents aeafb3a + 95975ec commit ec4171e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/advantages.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ an instance variable as with standard python programming for direct use.
with BuildSketch() as plan:
r = Rectangle(width, height)
print(r.Area())
print(r.area)
...
Operators
Expand All @@ -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 ec4171e

Please sign in to comment.