12345678910111213141516171819202122232425262728293031323334 |
- #ifndef IGL_ROWS_TO_MATRIX_H
- #define IGL_ROWS_TO_MATRIX_H
- #include "igl_inline.h"
- #include <vector>
- namespace igl
- {
-
-
-
-
-
-
-
-
-
-
-
-
- template <class Row, class Mat>
- IGL_INLINE bool rows_to_matrix(const std::vector<Row> & V,Mat & M);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "rows_to_matrix.cpp"
- #endif
- #endif
|