Browse Source

note about exterior edges

Former-commit-id: 3b4795726550ac28b751b1ed0c98b2155f916957
Alec Jacobson 10 years ago
parent
commit
e910705c96
1 changed files with 3 additions and 0 deletions
  1. 3 0
      include/igl/outline_ordered.cpp

+ 3 - 0
include/igl/outline_ordered.cpp

@@ -16,6 +16,9 @@ IGL_INLINE void igl::outline_ordered(
 {
   using namespace std;
   using namespace Eigen;
+  // Exterior edges include some non-manifold edges (poor function name). I
+  // suppose `outline_ordered` is not well defined for non-manifold meshes, but
+  // perhaps this should just call `boundary_facets`
   MatrixXi E = exterior_edges(F);
 
   set<int> unseen;