Skip to Content.
Sympa Menu

cgal-discuss - [cgal-discuss] Re: Constrained Delauny Triangulation

Subject: CGAL users discussion list

List archive

[cgal-discuss] Re: Constrained Delauny Triangulation


Chronological Thread 
  • From: JuanLu <>
  • To:
  • Subject: [cgal-discuss] Re: Constrained Delauny Triangulation
  • Date: Sat, 11 Aug 2012 01:28:03 -0700 (PDT)

Hi,

I was taking a look on your code and I see something strange:
...
//Insert additional points and Constraint lines
Vertex_handle_fine *vc1*,* vc2*;
*v1* = cdt_fine.insert(Point_fine(-18.5303,0.999968));
*v2* = cdt_fine.insert(Point_fine(-7.51812,-8.57419));
cdt_fine.insert_constraint(vc1, vc2);
...

Perhaps it should be:
...
//Insert additional points and Constraint lines
Vertex_handle_fine *vc1*,* vc2*;
*vc1* = cdt_fine.insert(Point_fine(-18.5303,0.999968));
*vc2* = cdt_fine.insert(Point_fine(-7.51812,-8.57419));
cdt_fine.insert_constraint(vc1, vc2);
...



--
View this message in context:
http://cgal-discuss.949826.n4.nabble.com/Constrained-Delauny-Triangulation-tp4655688p4655691.html
Sent from the cgal-discuss mailing list archive at Nabble.com.



Archive powered by MHonArc 2.6.18.

Top of Page