8#ifndef IGL_ADJACENCY_LIST_H
9#define IGL_ADJACENCY_LIST_H
13#include <Eigen/Sparse>
36 template <
typename Index,
typename IndexVector>
38 const Eigen::MatrixBase<Index> & F,
39 std::vector<std::vector<IndexVector> >& A,
46 template <
typename Index>
48 const std::vector<std::vector<Index> > & F,
49 std::vector<std::vector<Index> >& A);
53#ifndef IGL_STATIC_LIBRARY
54# include "adjacency_list.cpp"
#define IGL_INLINE
Definition igl_inline.h:15
void adjacency_list(const Eigen::MatrixBase< Index > &F, std::vector< std::vector< IndexVector > > &A, bool sorted=false)
Constructs the graph adjacency list of a given mesh (V,F)