123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- #ifndef IGL_LOOP_H
- #define IGL_LOOP_H
- #include <igl/igl_inline.h>
- #include <Eigen/Core>
- #include <Eigen/Sparse>
- namespace igl
- {
-
-
-
-
-
-
-
-
-
-
- template <
- typename DerivedF,
- typename SType,
- typename DerivedNF>
- IGL_INLINE void loop(
- const int n_verts,
- const Eigen::PlainObjectBase<DerivedF> & F,
- Eigen::SparseMatrix<SType>& S,
- Eigen::PlainObjectBase<DerivedNF> & NF);
-
-
-
-
-
-
-
-
-
- template <
- typename DerivedV,
- typename DerivedF,
- typename DerivedNV,
- typename DerivedNF>
- IGL_INLINE void loop(
- const Eigen::PlainObjectBase<DerivedV>& V,
- const Eigen::PlainObjectBase<DerivedF>& F,
- Eigen::PlainObjectBase<DerivedNV>& NV,
- Eigen::PlainObjectBase<DerivedNF>& NF,
- const int number_of_subdivs = 1);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "loop.cpp"
- #endif
- #endif
|