8#ifndef IGL_LIST_TO_MATRIX_H
9#define IGL_LIST_TO_MATRIX_H
26 template <
typename T,
typename Derived>
28 const std::vector<std::vector<T > > & V,
29 Eigen::PlainObjectBase<Derived>& M);
31 template <
typename T,
size_t N,
typename Derived>
33 const std::vector<std::array<T, N> > & V,
34 Eigen::PlainObjectBase<Derived>& M);
37 template <
typename T,
typename Derived>
46 template <
typename T,
typename Derived>
48 const std::vector<std::vector<T > > & V,
51 Eigen::PlainObjectBase<Derived>& M);
54#ifndef IGL_STATIC_LIBRARY
55# include "list_to_matrix.cpp"
#define IGL_INLINE
Definition igl_inline.h:15
bool list_to_matrix(const std::vector< std::vector< T > > &V, Eigen::PlainObjectBase< Derived > &M)
Convert a list (std::vector) of row vectors of the same length to a matrix.