Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] Triangulation_3::Facet_circulator and how to get its cell_handle and index...

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] Triangulation_3::Facet_circulator and how to get its cell_handle and index...


Chronological Thread 
  • From:
  • To:
  • Subject: Re: [cgal-discuss] Triangulation_3::Facet_circulator and how to get its cell_handle and index...
  • Date: Fri, 13 Jul 2007 12:07:56 +0200 (CEST)
  • Importance: Normal


Le Ven 13 juillet 2007 11:37, Thomas Zangl - Home a écrit :
> The code look like this:
> Rt_Facet_circulator fCirc,fCircDone = t.incident_facets(*eIt);

> The errors are of some kind "fCirc" has no member first and no member
> second.

You did not initialize fCirc. Typically, you want fCirc and fCircDone to
be two _copies_ of the same circulator. You obtain that by writing
something like

Rt_Facet_circulator fCirc = t.incident_facets(*eIt), fCircDone(fCirc);

--
Camille





Archive powered by MHonArc 2.6.16.

Top of Page