Skip to Content.
Sympa Menu

cgal-discuss - [cgal-discuss] Question on Triangulation

Subject: CGAL users discussion list

List archive

[cgal-discuss] Question on Triangulation


Chronological Thread 
  • From: Rahul Kavalapara <>
  • To:
  • Subject: [cgal-discuss] Question on Triangulation
  • Date: Wed, 2 Sep 2009 04:14:59 -0600

Hi,

From the triangulation example "triangulation_prog1.cpp", given in the documentation. 

Triangulation t;
  t.insert(begin, end);

  Vertex_circulator vc = t.incident_vertices(t.infinite_vertex()),
    done(vc);
  if (vc != 0) {
    do { std::cout << vc->point() << std::endl;
    }while(++vc != done);
  }

It outputs the incident vertices. I find this unclear, of which vertex is incident to the actual vertex. 
Can we output the triangulation in the form of triangles ?
like triangle:(10,3),(4,5),(8,7) as it is much clear which are the vertices forming the triangles ?

--

Rahul



Archive powered by MHonArc 2.6.16.

Top of Page