Triangle Remeshing
출처: https://doc.cgal.org/latest/Mesh_3/index.html#Chapter_3D_Mesh_Generationtriangle 로 이루어진 파트가 있을때.. 아래와 같이 CGAL을 이용하여 remshing 가능..컴파일% g++ -Wa,-mbig-obj -O2 ./remesh.cpp -lgmp -lmpfr -lgmp코드#include #include #include #include #include #include #include // Domaintypedef CGAL::Exact_predicates_inexact_constructions_kernel K;typedef CGAL::Mesh_polyhedron_3::type Polyhedron;typedef CGAL::Polyhedr..