#include "igl_inline.h"
#include <Eigen/Dense>
#include <Eigen/Sparse>
#include <vector>
#include "adjacency_list.cpp"
 
Go to the source code of this file.
 | 
| template<typename Index , typename IndexVector >  | 
| void  | igl::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)  
  | 
|   | 
| template<typename Index >  | 
| void  | igl::adjacency_list (const std::vector< std::vector< Index > > &F, std::vector< std::vector< Index > > &A) | 
|   | Constructs the graph adjacency list of a given polygon mesh (V,F)  
  | 
|   |