12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef IGL_COTMATRIX_ENTRIES_H
- #define IGL_COTMATRIX_ENTRIES_H
- #include "igl_inline.h"
- #include <Eigen/Core>
- namespace igl
- {
-
-
-
-
-
-
-
-
-
-
-
-
- template <typename DerivedV, typename DerivedF, typename DerivedC>
- IGL_INLINE void cotmatrix_entries(
- const Eigen::MatrixBase<DerivedV>& V,
- const Eigen::MatrixBase<DerivedF>& F,
- Eigen::PlainObjectBase<DerivedC>& C);
-
-
-
-
-
-
-
- template <typename Derivedl, typename DerivedC>
- IGL_INLINE void cotmatrix_entries(
- const Eigen::MatrixBase<Derivedl>& l,
- Eigen::PlainObjectBase<DerivedC>& C);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "cotmatrix_entries.cpp"
- #endif
- #endif
|