123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #ifndef IGL_COPYLEFT_CGAL_RESOLVE_INTERSECTIONS_H
- #define IGL_COPYLEFT_CGAL_RESOLVE_INTERSECTIONS_H
- #include "../../igl_inline.h"
- #include <Eigen/Core>
- namespace igl
- {
- namespace copyleft
- {
-
-
-
-
-
-
-
-
-
-
-
-
- namespace cgal
- {
- template <
- typename DerivedV,
- typename DerivedE,
- typename DerivedVI,
- typename DerivedEI,
- typename DerivedJ,
- typename DerivedIM>
- IGL_INLINE void resolve_intersections(
- const Eigen::PlainObjectBase<DerivedV> & V,
- const Eigen::PlainObjectBase<DerivedE> & E,
- Eigen::PlainObjectBase<DerivedVI> & VI,
- Eigen::PlainObjectBase<DerivedEI> & EI,
- Eigen::PlainObjectBase<DerivedJ> & J,
- Eigen::PlainObjectBase<DerivedIM> & IM);
- }
- }
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "resolve_intersections.cpp"
- #endif
- #endif
|