12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #ifndef IGL_EULER_CHARACTERISTIC_H
- #define IGL_EULER_CHARACTERISTIC_H
- #include "igl_inline.h"
- #include <Eigen/Dense>
- #include <Eigen/Sparse>
- #include <vector>
- namespace igl
- {
-
-
-
-
-
- template <typename DerivedF>
- IGL_INLINE int euler_characteristic(
- const Eigen::MatrixBase<DerivedF> & F);
-
-
-
-
-
-
-
-
- template <typename Scalar, typename Index>
- IGL_INLINE int euler_characteristic(
- const Eigen::PlainObjectBase<Scalar> & V,
- const Eigen::PlainObjectBase<Index> & F);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "euler_characteristic.cpp"
- #endif
- #endif
|