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: Laurent Rineau <>
  • To:
  • Subject: Re: [cgal-discuss] Triangulation_3::Facet_circulator and how to get its cell_handle and index...
  • Date: Fri, 13 Jul 2007 12:13:35 +0200
  • Organization: Inria, Sophia Antipolis, FRANCE

On Friday 13 July 2007 12:07:56

wrote:
> 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 is right: your code is not correct. I missed that point! The error
that Camille has detected is a runtime error. You will have to correct that
one also.

--
Laurent Rineau
INRIA - Sophia Antipolis
BP 93, 2004 Route des Lucioles
06902 Sophia Antipolis Cedex FRANCE




Archive powered by MHonArc 2.6.16.

Top of Page