123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #ifndef IGL_WRITEDMAT_H
- #define IGL_WRITEDMAT_H
- #include "igl_inline.h"
- #include <Eigen/Core>
- #include <string>
- #include <vector>
- namespace igl
- {
-
-
-
-
-
-
-
-
-
-
- template <typename DerivedW>
- IGL_INLINE bool writeDMAT(
- const std::string file_name,
- const Eigen::MatrixBase<DerivedW> & W,
- const bool ascii=true);
- template <typename Scalar>
- IGL_INLINE bool writeDMAT(
- const std::string file_name,
- const std::vector<std::vector<Scalar> > & W,
- const bool ascii=true);
- template <typename Scalar>
- IGL_INLINE bool writeDMAT(
- const std::string file_name,
- const std::vector<Scalar > &W,
- const bool ascii=true);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "writeDMAT.cpp"
- #endif
- #endif
|