12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef IGL_MVC_H
- #define IGL_MVC_H
- #include "igl_inline.h"
- #include <Eigen/Dense>
- namespace igl
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
- IGL_INLINE void mvc(
- const Eigen::MatrixXd &V,
- const Eigen::MatrixXd &C,
- Eigen::MatrixXd &W);
-
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "mvc.cpp"
- #endif
- #endif
|