浏览代码

note about exterior edges

Former-commit-id: 3b4795726550ac28b751b1ed0c98b2155f916957
Alec Jacobson 10 年之前
父节点
当前提交
e910705c96
共有 1 个文件被更改,包括 3 次插入0 次删除
  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;