Skip to content

Commit

Permalink
docs: fix halfedges call that includes vertices in args
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Hermann <[email protected]>
  • Loading branch information
lsh committed Jul 6, 2024
1 parent 478f595 commit 86384a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gpytoolbox/halfedges.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def halfedges(F):
f = np.array([[0,1,2]],dtype=int)
# Call to halfedges
from gpytoolbox import halfedges
he = halfedges(v,f)
he = halfedges(f)
```
"""
Expand Down

0 comments on commit 86384a7

Please sign in to comment.