Skip to Content.
Sympa Menu

cgal-discuss - [cgal-discuss] Delaunay::Finite_edges_iterator give some rare points

Subject: CGAL users discussion list

List archive

[cgal-discuss] Delaunay::Finite_edges_iterator give some rare points


Chronological Thread 
  • From: pam <>
  • To:
  • Subject: [cgal-discuss] Delaunay::Finite_edges_iterator give some rare points
  • Date: Wed, 8 Oct 2008 10:58:28 -0300
  • Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type :content-transfer-encoding:content-disposition; b=XXhd+5rp2PFmEeo4QQKfcRiNPV8IZn2ep7KI+mqkrP34oCG/J4e5HBvE53vdQKl+Ad 2UAdj1oFIXzu4GFl9T2lad16AT5qfXJrDI4BDpQ+xpchuUyiWLl7OyBxRwIzIqmlAsO0 owx9fU0lUVm0cPtM/IZP6tt59eoNA09gqrLE0=

Hi all!
I'm working with delaunay 3D and I was able to view cells ans faces
but when I try to go trougth the edge I get some rare points that are
not part of my points.

Here is my code. Any idea of what is wrong?

Delaunay::Finite_edges_iterator edge;
Point pt0;
Point pt1;
for(edge=T.finite_edges_begin(); edge != T.finite_edges_end();edge++)
{
std::cout<<" Edges "<<j<<std::endl;
pt0=edge->first->vertex(Delaunay::cw(edge->second))->point();
pt1=edge->first->vertex(Delaunay::ccw(edge->second))->point();
std::cout<<pt0<<std::endl;
std::cout<<pt1<<std::endl;
j++;

}

Thanks in advance

Pamela



Archive powered by MHonArc 2.6.16.

Top of Page