Skip to Content.
Sympa Menu

cgal-discuss - [cgal-discuss] Re: 3d mesh density issue

Subject: CGAL users discussion list

List archive

[cgal-discuss] Re: 3d mesh density issue


Chronological Thread 
  • From: Marek <>
  • To:
  • Subject: [cgal-discuss] Re: 3d mesh density issue
  • Date: Wed, 15 May 2013 07:23:13 -0700 (PDT)

I input it as polyhedron from file door.off that is uploaded near beginning
of my first post in this threat.

Polyhedron polyhedron;

std::ifstream input( input_filename );
if(input.is_open())
{
input >> polyhedron;
if(!polyhedron.is_pure_triangle())
err = true;

Mesh_domain domain(polyhedron);

Then, because domain is concept of:
typedef CGAL::Polyhedral_mesh_domain_with_features_3<K> Mesh_domain;

i can call domain.detect_features();

to detect 1d features




--
View this message in context:
http://cgal-discuss.949826.n4.nabble.com/3d-mesh-density-issue-tp4657448p4657452.html
Sent from the cgal-discuss mailing list archive at Nabble.com.



Archive powered by MHonArc 2.6.18.

Top of Page