Skip to content

Commit b3f94f7

Browse files
author
Teseo Schneider
committed
2 parents 686d943 + 77028b9 commit b3f94f7

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)