Skip to content

Commit

Permalink
fix FF conversion to eigen matrix (cnr-isti-vclab/PyMeshLab#375)
Browse files Browse the repository at this point in the history
  • Loading branch information
alemuntoni committed Jun 7, 2024
1 parent b0767f5 commit dff56b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/utilities/eigen_mesh_conversions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1193,7 +1193,7 @@ Eigen::MatrixX3i meshlab::faceFaceAdjacencyMatrix(const CMeshO& mesh)
faceFaceMatrix(i, j) = -1;
}
else {
faceFaceMatrix(i, j) = mesh.face[i].FFi(j);
faceFaceMatrix(i, j) = vcg::tri::Index(mesh, AdjF);
}
}
}
Expand Down

0 comments on commit dff56b5

Please sign in to comment.