1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef IGL_ALL_EDGES_H
- #define IGL_ALL_EDGES_H
- #include "igl_inline.h"
- #include <Eigen/Dense>
- namespace igl
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- template <typename DerivedF, typename DerivedE>
- IGL_INLINE void all_edges(
- const Eigen::MatrixBase<DerivedF> & F,
- Eigen::PlainObjectBase<DerivedE> & E);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "all_edges.cpp"
- #endif
- #endif
|