exposed the type of matrix as public

This commit is contained in:
nico 2020-11-25 17:50:22 +10:00
parent dcb7182d3f
commit b6bdb06b5f
1 changed files with 2 additions and 1 deletions

View File

@ -42,8 +42,9 @@ class MeshToMatrix
typedef typename MeshType::VertexIterator VertexIterator;
typedef typename MeshType::CoordType CoordType;
typedef typename MeshType::ScalarType ScalarType;
public:
typedef typename Eigen::Matrix<ScalarType, Eigen::Dynamic, Eigen::Dynamic> MatrixXm;
private:
static void GetTriEdgeAdjacency(const MatrixXm& V,
const Eigen::MatrixXi& F,
Eigen::MatrixXi& EV,