Skip to Content.
Sympa Menu

cgal-discuss - [cgal-discuss] Re: facet iterator in LIFO order

Subject: CGAL users discussion list

List archive

[cgal-discuss] Re: facet iterator in LIFO order


Chronological Thread 
  • From: vanimurarka <>
  • To:
  • Subject: [cgal-discuss] Re: facet iterator in LIFO order
  • Date: Wed, 13 Oct 2010 12:43:30 -0700 (PDT)


It seems doing
for ( Facet_iterator f = model.facets_end(); f != model.facets_begin(); ++f)
or
for ( Facet_iterator f = model.facets_end(); f != model.facets_begin(); --f)

instead of
for ( Facet_iterator f = model.facets_begin(); f != model.facets_end(); ++f)

will make it LIFO?

Just something that struck me after sending the previous mail.
--
View this message in context:
http://cgal-discuss.949826.n4.nabble.com/facet-iterator-in-LIFO-order-tp2994322p2994333.html
Sent from the cgal-discuss mailing list archive at Nabble.com.



Archive powered by MHonArc 2.6.16.

Top of Page