12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef IGL_REMOVE_DUPLICATES_H
- #define IGL_REMOVE_DUPLICATES_H
- #include "igl_inline.h"
- #include <Eigen/Core>
- namespace igl
- {
-
-
-
-
-
-
-
-
-
-
-
- template <typename DerivedV, typename DerivedF>
- IGL_INLINE void remove_duplicates(
- const Eigen::PlainObjectBase<DerivedV> &V,
- const Eigen::PlainObjectBase<DerivedF> &F,
- Eigen::PlainObjectBase<DerivedV> &NV,
- Eigen::PlainObjectBase<DerivedF> &NF,
- Eigen::Matrix<typename DerivedF::Scalar, Eigen::Dynamic, 1> &I,
- const double epsilon = 2.2204e-15);
-
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "remove_duplicates.cpp"
- #endif
- #endif
|