The Octave Forge package repository is no longer actively maintained. Please find Octave Packages at https://packages.octave.org.

Navigation

Operators and Keywords

Function List:

C++ API

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