Skip to content

Commit 77028b9

Browse files
wwwslingerJason McInerney
andauthored
Update remove_duplicate_vertices docs to match the call signature and return (#55)
* Updated doc comments to match actual input requirements and output objects Co-authored-by: Jason McInerney <jason@thisis.ai>
1 parent 283a0fd commit 77028b9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/remove_duplicate_vertices.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Returns
2626
SV #SV by dim new list of vertex positions
2727
SVI #V by 1 list of indices so SV = V(SVI,:)
2828
SVJ #SV by 1 list of indices so V = SV(SVJ,:)
29-
Wrapper that also remaps given faces (F) --> (SF) so that SF index SV
29+
SF #SF by dim new list of faces so SF = F(SVJ,:)
3030
3131
See also
3232
--------
@@ -39,7 +39,7 @@ None
3939
Examples
4040
--------
4141
% Mesh in (V,F)
42-
[SV,SVI,SVJ] = remove_duplicate_vertices(V,1e-7);
42+
[SV,SVI,SVJ,SF] = remove_duplicate_vertices(V,F,1e-7);
4343
% remap faces
4444
SF = SVJ(F);
4545

0 commit comments

Comments
 (0)