1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #ifndef IGL_READDMAT_H
- #define IGL_READDMAT_H
- #include "igl_inline.h"
- #include <string>
- #include <vector>
- #ifndef IGL_NO_EIGEN
- # include <Eigen/Core>
- #endif
- namespace igl
- {
-
-
-
-
-
-
-
-
- #ifndef IGL_NO_EIGEN
- template <typename DerivedW>
- IGL_INLINE bool readDMAT(const std::string file_name,
- Eigen::PlainObjectBase<DerivedW> & W);
- #endif
-
- template <typename Scalar>
- IGL_INLINE bool readDMAT(
- const std::string file_name,
- std::vector<std::vector<Scalar> > & W);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "readDMAT.cpp"
- #endif
- #endif
|