Skip to Content.
Sympa Menu

cgal-discuss - [cgal-discuss] facet iterator

Subject: CGAL users discussion list

List archive

[cgal-discuss] facet iterator


Chronological Thread 
  • From:
  • To:
  • Subject: [cgal-discuss] facet iterator
  • Date: Thu, 13 Aug 2009 18:15:17 +0200 (CEST)
  • Importance: Normal

Hi,
I have a question. What does it means facet in 3D triangulation? For
example, consider the cell (a,b,c,d) of the triangulation. Contains the
triangluation following facets only? :

a,b,c
a,b,d
a,d,c
b,d,c


Or are there two facets for each side of each triangle? :

a,b,c
c,b,a
a,b,d
b,b,a
a,d,c
c,d,a
b,d,c
c,d,d


Which kind will give me following code? :

for (Dh::Facet_iterator it = T.facets_begin(); it != T.facets_end(); ++it)
{
};


I have another question too. How can I determine incident cells of the
facet denoted by thee vertex handels?


Many Thanks.

Michal Jancosek






Archive powered by MHonArc 2.6.16.

Top of Page