exposed the type of matrix as public
This commit is contained in:
parent
dcb7182d3f
commit
b6bdb06b5f
|
|
@ -42,8 +42,9 @@ class MeshToMatrix
|
||||||
typedef typename MeshType::VertexIterator VertexIterator;
|
typedef typename MeshType::VertexIterator VertexIterator;
|
||||||
typedef typename MeshType::CoordType CoordType;
|
typedef typename MeshType::CoordType CoordType;
|
||||||
typedef typename MeshType::ScalarType ScalarType;
|
typedef typename MeshType::ScalarType ScalarType;
|
||||||
|
public:
|
||||||
typedef typename Eigen::Matrix<ScalarType, Eigen::Dynamic, Eigen::Dynamic> MatrixXm;
|
typedef typename Eigen::Matrix<ScalarType, Eigen::Dynamic, Eigen::Dynamic> MatrixXm;
|
||||||
|
private:
|
||||||
static void GetTriEdgeAdjacency(const MatrixXm& V,
|
static void GetTriEdgeAdjacency(const MatrixXm& V,
|
||||||
const Eigen::MatrixXi& F,
|
const Eigen::MatrixXi& F,
|
||||||
Eigen::MatrixXi& EV,
|
Eigen::MatrixXi& EV,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue