Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] Re: Mesh generation question

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] Re: Mesh generation question


Chronological Thread 
  • From: "Laurent Rineau (GeometryFactory)" <>
  • To:
  • Subject: Re: [cgal-discuss] Re: Mesh generation question
  • Date: Wed, 18 Jan 2012 19:39:32 +0100
  • Organization: GeometryFactory

Le mercredi 18 janvier 2012 10:26:35 Ram a écrit :
> Hi Laurent,
>
> Thanks for the answer. One last question:
>
> If I want to replace the line:
>
> Mesh_domain domain("data/cube.off");
>
> with
>
> Polyhedron polyhedron;
> make_cube_3(polyhedron);
> std::cout << polyhedron;
> Mesh_domain(polyhedron);

The last line is wrong. It should be:

Mesh_domain domain(polyhedron);

--
Laurent Rineau, PhD
R&D Engineer at GeometryFactory http://www.geometryfactory.com/
Release Manager of the CGAL Project http://www.cgal.org/




Archive powered by MHonArc 2.6.16.

Top of Page