12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef IGL_COLLAPSE_SMALL_TRIANGLES_H
- #define IGL_COLLAPSE_SMALL_TRIANGLES_H
- #include <Eigen/Dense>
- namespace igl
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- void collapse_small_triangles(
- const Eigen::MatrixXd & V,
- const Eigen::MatrixXi & F,
- const double eps,
- Eigen::MatrixXi & FF);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "collapse_small_triangles.cpp"
- #endif
-
- #endif
|