Эх сурвалжийг харах

note about possible duplicacy

Former-commit-id: 5a95f69d91ae45f9bb519ede09f6ffadf1d7424d
Alec Jacobson 9 жил өмнө
parent
commit
ed2cb33c19

+ 2 - 0
include/igl/edge_flaps.h

@@ -24,6 +24,8 @@ namespace igl
   //     F(f,:) opposite the vth corner, where EI(e,0)=v. Similarly EF(e,1) "
   //     F(f,:) opposite the vth corner, where EI(e,0)=v. Similarly EF(e,1) "
   //     e=(j->i)
   //     e=(j->i)
   //   EI  #E by 2 list of edge flap corners (see above).
   //   EI  #E by 2 list of edge flap corners (see above).
+  //
+  // TODO: This seems to be a duplicate of edge_topology.h
   IGL_INLINE void edge_flaps(
   IGL_INLINE void edge_flaps(
     const Eigen::MatrixXi & F,
     const Eigen::MatrixXi & F,
     const Eigen::MatrixXi & E,
     const Eigen::MatrixXi & E,

+ 3 - 1
include/igl/edge_topology.h

@@ -16,11 +16,13 @@
 namespace igl 
 namespace igl 
 {
 {
   // Initialize Edges and their topological relations
   // Initialize Edges and their topological relations
-  
+  //
   // Output:
   // Output:
   // EV  : #Ex2, Stores the edge description as pair of indices to vertices
   // EV  : #Ex2, Stores the edge description as pair of indices to vertices
   // FE : #Fx3, Stores the Triangle-Edge relation
   // FE : #Fx3, Stores the Triangle-Edge relation
   // EF : #Ex2: Stores the Edge-Triangle relation
   // EF : #Ex2: Stores the Edge-Triangle relation
+  //
+  // TODO: This seems to be a duplicate of edge_flaps.h
 template <typename DerivedV, typename DerivedF>
 template <typename DerivedV, typename DerivedF>
   IGL_INLINE void edge_topology(
   IGL_INLINE void edge_topology(
     const Eigen::PlainObjectBase<DerivedV>& V,
     const Eigen::PlainObjectBase<DerivedV>& V,