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