Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] Regular_Triangulation_3: dual of an edge

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] Regular_Triangulation_3: dual of an edge


Chronological Thread 
  • From: Joshua A Levine <>
  • To:
  • Subject: Re: [cgal-discuss] Regular_Triangulation_3: dual of an edge
  • Date: Wed, 15 Aug 2007 11:38:27 -0400

Don't you want ++cCirc instead of cCirc++? Otherwise I would think the loop
would end after 1 iteration, giving you a value of 0 or 1 for pDual.size().

Josh

Thomas Zangl - Home wrote:
do {
if (!(t.is_infinite(cCirc))) {
Point p = t.dual(cCirc);
pDual.push_back(p);
}
} while(cCirc++!=cCircEnd);




Archive powered by MHonArc 2.6.16.

Top of Page