We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2516539 + 829864a commit 833abffCopy full SHA for 833abff
1 file changed
tutorial/igl_docs.md
@@ -291,7 +291,7 @@ breadth first search. I.e. the output is an array of vertices in breadth-first o
291
292
**Examples**
293
```python
294
-V, F, _ = igl.readOFF("test.off)
+V, F, _ = igl.read_off("test.off")
295
A = igl.adjacency_matrix(V, F)
296
d, p = igl.bfs(A, V[0])
297
```
@@ -309,7 +309,7 @@ Consistently orient faces in orientable patches using BFS.
309
310
311
312
-v, f, _ = igl.readOFF("test.off)
+v, f, _ = igl.read_off("test.off")
313
ff, c = igl.bfs_orient(f)
314
315
@@ -979,7 +979,7 @@ Constructs a list of unique edges represented in a given mesh (v, f)
979
980
981
982
983
E = igl.edges(F)
984
985
0 commit comments