REMOVEDUPLICATEFACES Remove duplicate faces in a face array.

   [V, F] = removeDuplicateFaces(V, F)

   Example
     faces = [1 2 3;2 3 4;3 4 5;2 3 4];
     removeDuplicateFaces(faces)
     ans =
         1 2 3
         2 3 4
         2 3 5

   See also

Package: matgeom