1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef IGL_SETDIFF_H
- #define IGL_SETDIFF_H
- #include "igl_inline.h"
- #include <Eigen/Core>
- namespace igl
- {
-
-
-
-
-
-
-
-
-
- template <
- typename DerivedA,
- typename DerivedB,
- typename DerivedC,
- typename DerivedIA>
- IGL_INLINE void setdiff(
- const Eigen::DenseBase<DerivedA> & A,
- const Eigen::DenseBase<DerivedB> & B,
- Eigen::PlainObjectBase<DerivedC> & C,
- Eigen::PlainObjectBase<DerivedIA> & IA);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "setdiff.cpp"
- #endif
- #endif
|