Skip to Content.
Sympa Menu

cgal-discuss - Voronoi Edge problem

Subject: CGAL users discussion list

List archive

Voronoi Edge problem


Chronological Thread 
  • From:
  • To:
  • Subject: Voronoi Edge problem
  • Date: Wed, 14 May 2008 12:04:13 +0200

Hi all,
I have a problem with Voronoi Diagram.
I want to transfer a Voronoi Diagram edge(which is a Halfedge) to Curve_2;
I do it like this.


for (Edge_iterator edit = vd.edges_begin(); edit != vd.edges_end(); ++edit) {
Halfedge hedg = *edit;
...
Curve_2 curve( ) // here i want to transfer the halfedges to curves
}

all the information i can get from the Halfegde is the source and the target:

hedg.target()->point();
hedg.target()->point();

But this is of course not enough to describe the hole Curve_2.

Can someone help me?

Thank you very much in advance,
Fix


  • Voronoi Edge problem, fixpaul, 05/14/2008

Archive powered by MHonArc 2.6.16.

Top of Page