mirror of https://github.com/CGAL/cgal
Added trace
This commit is contained in:
parent
b80420b7f3
commit
8ddc20bce0
|
|
@ -825,6 +825,9 @@ void CPoissonDoc::OnReconstructionPoissonSurfaceMeshing()
|
||||||
m_sm_distance*size); // upper bound of distance to surface
|
m_sm_distance*size); // upper bound of distance to surface
|
||||||
|
|
||||||
// meshing surface
|
// meshing surface
|
||||||
|
std::cerr << "make_surface_mesh(sphere={center=("<<sm_sphere_center << "), radius="<<sm_sphere_radius << "},\n"
|
||||||
|
<< " criteria={angle="<<m_sm_angle << ", radius="<<m_sm_radius*size << ", distance="<<m_sm_distance*size << "},\n"
|
||||||
|
<< " Non_manifold_tag())...\n";
|
||||||
CGAL::make_surface_mesh(m_surface_mesher_c2t3, surface, criteria, CGAL::Non_manifold_tag());
|
CGAL::make_surface_mesh(m_surface_mesher_c2t3, surface, criteria, CGAL::Non_manifold_tag());
|
||||||
|
|
||||||
// get output surface
|
// get output surface
|
||||||
|
|
@ -1100,6 +1103,9 @@ void CPoissonDoc::OnReconstructionApssReconstruction()
|
||||||
m_sm_distance*size); // upper bound of distance to surface
|
m_sm_distance*size); // upper bound of distance to surface
|
||||||
|
|
||||||
// meshing surface
|
// meshing surface
|
||||||
|
std::cerr << "make_surface_mesh(sphere={center=("<<sm_sphere_center << "), radius="<<sm_sphere_radius << "},\n"
|
||||||
|
<< " criteria={angle="<<m_sm_angle << ", radius="<<m_sm_radius*size << ", distance="<<m_sm_distance*size << "},\n"
|
||||||
|
<< " Non_manifold_tag())...\n";
|
||||||
CGAL::make_surface_mesh(m_surface_mesher_c2t3, surface, criteria, CGAL::Non_manifold_tag());
|
CGAL::make_surface_mesh(m_surface_mesher_c2t3, surface, criteria, CGAL::Non_manifold_tag());
|
||||||
|
|
||||||
// get output surface
|
// get output surface
|
||||||
|
|
|
||||||
|
|
@ -206,9 +206,9 @@ int main(int argc, char * argv[])
|
||||||
sm_distance*size); // upper bound of distance to surface
|
sm_distance*size); // upper bound of distance to surface
|
||||||
|
|
||||||
// meshing surface
|
// meshing surface
|
||||||
//std::cerr << "make_surface_mesh(sphere={center=("<<sm_sphere_center << "), radius="<<sm_sphere_radius << "},\n"
|
std::cerr << "make_surface_mesh(sphere={center=("<<sm_sphere_center << "), radius="<<sm_sphere_radius << "},\n"
|
||||||
// << " criteria={angle="<<sm_angle << ", radius="<<sm_radius*size << ", distance="<<sm_distance*size << "},\n"
|
<< " criteria={angle="<<sm_angle << ", radius="<<sm_radius*size << ", distance="<<sm_distance*size << "},\n"
|
||||||
// << " Non_manifold_tag())...\n";
|
<< " Non_manifold_tag())...\n";
|
||||||
CGAL::make_surface_mesh(c2t3, surface, criteria, CGAL::Non_manifold_tag());
|
CGAL::make_surface_mesh(c2t3, surface, criteria, CGAL::Non_manifold_tag());
|
||||||
|
|
||||||
// Print status
|
// Print status
|
||||||
|
|
|
||||||
|
|
@ -195,9 +195,9 @@ int main(int argc, char * argv[])
|
||||||
sm_distance*size); // upper bound of distance to surface
|
sm_distance*size); // upper bound of distance to surface
|
||||||
|
|
||||||
// meshing surface
|
// meshing surface
|
||||||
//std::cerr << "make_surface_mesh(sphere={center=("<<sm_sphere_center << "), radius="<<sm_sphere_radius << "},\n"
|
std::cerr << "make_surface_mesh(sphere={center=("<<sm_sphere_center << "), radius="<<sm_sphere_radius << "},\n"
|
||||||
// << " criteria={angle="<<sm_angle << ", radius="<<sm_radius*size << ", distance="<<sm_distance*size << "},\n"
|
<< " criteria={angle="<<sm_angle << ", radius="<<sm_radius*size << ", distance="<<sm_distance*size << "},\n"
|
||||||
// << " Non_manifold_tag())...\n";
|
<< " Non_manifold_tag())...\n";
|
||||||
CGAL::make_surface_mesh(c2t3, surface, criteria, CGAL::Non_manifold_tag());
|
CGAL::make_surface_mesh(c2t3, surface, criteria, CGAL::Non_manifold_tag());
|
||||||
|
|
||||||
// Print status
|
// Print status
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue