Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] Triangulation_ds_face_base_2.h

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] Triangulation_ds_face_base_2.h


Chronological Thread 
  • From: Andreas Fabri <>
  • To:
  • Subject: Re: [cgal-discuss] Triangulation_ds_face_base_2.h
  • Date: Wed, 05 Sep 2007 08:46:54 +0200


wrote:
OK, I could be a bit more specific. The problem is with the statement

dt.incident_vertices(*now, fc);

with

list<Delaunay::Vertex_handle>::iterator now;
Delaunay::Face_circulator fc = dt.incident_faces(*now);

What could be getting wrong here?


Hello,

The three statements make sense, and should work,
so something must have gone wrong before.

You should call

if(! dt.is_valid(){
std::cout << "oops something ent wrong" << std::endl;
}

BEFORE the call dt.incident_vertices(*now, fc);



What kernel do you use, which triangulation,... just
copy paste the #includes and typedefs.

andreas



Archive powered by MHonArc 2.6.16.

Top of Page