1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef IGL_N_POLYVECTOR
- #define IGL_N_POLYVECTOR
- #include "igl_inline.h"
- #include <Eigen/Core>
- #include <vector>
- namespace igl {
-
-
-
-
-
-
-
-
- IGL_INLINE void n_polyvector(const Eigen::MatrixXd& V,
- const Eigen::MatrixXi& F,
- const Eigen::VectorXi& b,
- const Eigen::MatrixXd& bc,
- Eigen::MatrixXd &output);
- };
- #ifndef IGL_STATIC_LIBRARY
- #include "n_polyvector.cpp"
- #endif
- #endif
|