From b6bdb06b5f4eed050be97c35224846c2f05aea44 Mon Sep 17 00:00:00 2001 From: nico Date: Wed, 25 Nov 2020 17:50:22 +1000 Subject: [PATCH] exposed the type of matrix as public --- vcg/complex/algorithms/mesh_to_matrix.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vcg/complex/algorithms/mesh_to_matrix.h b/vcg/complex/algorithms/mesh_to_matrix.h index dc22ffb9..c85edf8b 100644 --- a/vcg/complex/algorithms/mesh_to_matrix.h +++ b/vcg/complex/algorithms/mesh_to_matrix.h @@ -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 MatrixXm; - +private: static void GetTriEdgeAdjacency(const MatrixXm& V, const Eigen::MatrixXi& F, Eigen::MatrixXi& EV,