You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
115 lines
3.4 KiB
115 lines
3.4 KiB
1 year ago
|
#include <igl/avg_edge_length.h>
|
||
|
#include <igl/barycenter.h>
|
||
|
#include <igl/jet.h>
|
||
|
#include <igl/planarize_quad_mesh.h>
|
||
|
#include <igl/quad_planarity.h>
|
||
|
#include <igl/readDMAT.h>
|
||
|
#include <igl/readOFF.h>
|
||
|
#include <igl/opengl/glfw/Viewer.h>
|
||
|
#include <vector>
|
||
|
#include <cstdlib>
|
||
|
|
||
|
|
||
|
// Quad mesh generated from conjugate field
|
||
|
Eigen::MatrixXd VQC;
|
||
|
Eigen::MatrixXi FQC;
|
||
|
Eigen::MatrixXi FQCtri;
|
||
|
Eigen::MatrixXd PQC0, PQC1, PQC2, PQC3;
|
||
|
|
||
|
// Planarized quad mesh
|
||
|
Eigen::MatrixXd VQCplan;
|
||
|
Eigen::MatrixXi FQCtriplan;
|
||
|
Eigen::MatrixXd PQC0plan, PQC1plan, PQC2plan, PQC3plan;
|
||
|
|
||
|
|
||
|
// Scale for visualizing the fields
|
||
|
double global_scale; //TODO: not used
|
||
|
|
||
|
|
||
|
bool key_down(igl::opengl::glfw::Viewer& viewer, unsigned char key, int modifier)
|
||
|
{
|
||
|
using namespace std;
|
||
|
using namespace Eigen;
|
||
|
|
||
|
// Plot the original quad mesh
|
||
|
if (key == '1')
|
||
|
{
|
||
|
// Draw the triangulated quad mesh
|
||
|
viewer.data().set_mesh(VQC, FQCtri);
|
||
|
|
||
|
// Assign a color to each quad that corresponds to its planarity
|
||
|
VectorXd planarity;
|
||
|
igl::quad_planarity( VQC, FQC, planarity);
|
||
|
MatrixXd Ct;
|
||
|
igl::jet(planarity, 0, 0.01, Ct);
|
||
|
MatrixXd C(FQCtri.rows(),3);
|
||
|
C << Ct, Ct;
|
||
|
viewer.data().set_colors(C);
|
||
|
|
||
|
// Plot a line for each edge of the quad mesh
|
||
|
viewer.data().add_edges(PQC0, PQC1, Eigen::RowVector3d(0,0,0));
|
||
|
viewer.data().add_edges(PQC1, PQC2, Eigen::RowVector3d(0,0,0));
|
||
|
viewer.data().add_edges(PQC2, PQC3, Eigen::RowVector3d(0,0,0));
|
||
|
viewer.data().add_edges(PQC3, PQC0, Eigen::RowVector3d(0,0,0));
|
||
|
}
|
||
|
|
||
|
// Plot the planarized quad mesh
|
||
|
if (key == '2')
|
||
|
{
|
||
|
// Draw the triangulated quad mesh
|
||
|
viewer.data().set_mesh(VQCplan, FQCtri);
|
||
|
|
||
|
// Assign a color to each quad that corresponds to its planarity
|
||
|
VectorXd planarity;
|
||
|
igl::quad_planarity( VQCplan, FQC, planarity);
|
||
|
MatrixXd Ct;
|
||
|
igl::jet(planarity, 0, 0.01, Ct);
|
||
|
MatrixXd C(FQCtri.rows(),3);
|
||
|
C << Ct, Ct;
|
||
|
viewer.data().set_colors(C);
|
||
|
|
||
|
// Plot a line for each edge of the quad mesh
|
||
|
viewer.data().add_edges(PQC0plan, PQC1plan, Eigen::RowVector3d(0,0,0));
|
||
|
viewer.data().add_edges(PQC1plan, PQC2plan, Eigen::RowVector3d(0,0,0));
|
||
|
viewer.data().add_edges(PQC2plan, PQC3plan, Eigen::RowVector3d(0,0,0));
|
||
|
viewer.data().add_edges(PQC3plan, PQC0plan, Eigen::RowVector3d(0,0,0));
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
using namespace Eigen;
|
||
|
using namespace std;
|
||
|
|
||
|
// Load a quad mesh generated by a conjugate field
|
||
|
igl::readOFF(TUTORIAL_SHARED_PATH "/inspired_mesh_quads_Conjugate.off", VQC, FQC);
|
||
|
|
||
|
// Convert it in a triangle mesh
|
||
|
FQCtri.resize(2*FQC.rows(), 3);
|
||
|
FQCtri << FQC.col(0),FQC.col(1),FQC.col(2),
|
||
|
FQC.col(2),FQC.col(3),FQC.col(0);
|
||
|
PQC0 = VQC(FQC.col(0).eval(), Eigen::all);
|
||
|
PQC1 = VQC(FQC.col(1).eval(), Eigen::all);
|
||
|
PQC2 = VQC(FQC.col(2).eval(), Eigen::all);
|
||
|
PQC3 = VQC(FQC.col(3).eval(), Eigen::all);
|
||
|
|
||
|
// Planarize it
|
||
|
igl::planarize_quad_mesh(VQC, FQC, 100, 0.005, VQCplan);
|
||
|
|
||
|
// Convert the planarized mesh to triangles
|
||
|
PQC0plan = VQCplan(FQC.col(0).eval(), Eigen::all);
|
||
|
PQC1plan = VQCplan(FQC.col(1).eval(), Eigen::all);
|
||
|
PQC2plan = VQCplan(FQC.col(2).eval(), Eigen::all);
|
||
|
PQC3plan = VQCplan(FQC.col(3).eval(), Eigen::all);
|
||
|
|
||
|
// Launch the viewer
|
||
|
igl::opengl::glfw::Viewer viewer;
|
||
|
key_down(viewer,'2',0);
|
||
|
viewer.data().invert_normals = true;
|
||
|
viewer.data().show_lines = false;
|
||
|
viewer.callback_key_down = &key_down;
|
||
|
viewer.launch();
|
||
|
}
|