Skip to content

Commit

Permalink
documentation fix in half-edge function (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
lsh authored Jul 9, 2024
1 parent 478f595 commit 8fc4575
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ library. We are thankful to them:
- [Towaki Takikawa](https://github.com/tovacinni) ([PR #49](https://github.com/sgsellan/gpytoolbox/pull/49))
- [Otman Benchekroun](https://github.com/otmanon) ([PR #59](https://github.com/sgsellan/gpytoolbox/pull/59))
- [Abhishek Madan](https://github.com/abhimadan) ([PR #103](https://github.com/sgsellan/gpytoolbox/pull/103))
- [Lukas Hermann](https://github.com/lsh) ([PR #135](https://github.com/sgsellan/gpytoolbox/pull/135))


<!-- Most of the functionality in this library is python-only, and it requires no
Expand Down
3 changes: 2 additions & 1 deletion src/gpytoolbox/halfedges.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ def halfedges(F):
f = np.array([[0,1,2]],dtype=int)
# Call to halfedges
from gpytoolbox import halfedges
he = halfedges(v,f)
# (Thank you to Lukas Hermann for finding and fixing a typo in this next line)
he = halfedges(f)
```
"""
Expand Down

0 comments on commit 8fc4575

Please sign in to comment.