Skip to Content.
Sympa Menu

cgal-discuss - Re: Re: [cgal-discuss] 3D Surface mesher

Subject: CGAL users discussion list

List archive

Re: Re: [cgal-discuss] 3D Surface mesher


Chronological Thread 
  • From:
  • To:
  • Subject: Re: Re: [cgal-discuss] 3D Surface mesher
  • Date: Thu, 24 May 2007 04:54:55 +0200

Dear Laurent,

Thanks for your answer.

> All the surfacic information are in the object c2t3. See the documentation,
> for that class:

I managed to get the surfacic information.
But I am not sure why facet iterator variable for c2t3 does not work without
initializing it.

If I try to compile the following fragment of code,
C2t3::Facet_iterator it;
the compiler (VC7) complains like
"error C2512:
'CGAL::Complex_2_in_triangulation_3<Tr>::Iterator_not_in_complex' ".
On the other hand, the following one can be compiled without any claims
C2t3::Facet_iterator it = c2t3.facets_begin();
Am I doing something wrong?

> If you want to recreate a surface from a set of points, you need a surface
> reconstruction algorithm. As far as I know, the only one that is publicly
> available in CGAL is the alpha shape.

Could the reconstructed shape be input for the function make_surface_mesh?
or do we have another way to make surface mesh from the shape?

My goal is to create surface mesh from given points written in a file.
I think one way to do that is to convert the file format to INRIMAGE, GIS or
ANALYZE one if their file format opens.


Best regards,
Momo



Archive powered by MHonArc 2.6.16.

Top of Page