Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] Which file include the definitions of Vertex_handle and Face_handle?

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] Which file include the definitions of Vertex_handle and Face_handle?


Chronological Thread 
  • From: Daniel Duque <>
  • To:
  • Subject: Re: [cgal-discuss] Which file include the definitions of Vertex_handle and Face_handle?
  • Date: Sat, 13 Apr 2013 17:12:28 +0200

El 13/04/2013 11:33, 魏华祎 escribió:
Hi, everyone,

I am looking for the definition of Vertex_handle and Face_handle which are used in Triangulation package of CGAL, but I get nothing from CGAL. Who can tell me where they are in CGAL?

You mean in the source, or in the documentation?

If the later, both are handles (a bit like iterators):
http://www.cgal.org/Manual/latest/doc_html/cgal_manual/Circulator/Chapter_main.html#Section_76.1

to either a vertex:
http://www.cgal.org/Manual/latest/doc_html/cgal_manual/TDS_2_ref/Concept_TriangulationDataStructure_2--Vertex.html
or a face:
http://www.cgal.org/Manual/latest/doc_html/cgal_manual/TDS_2_ref/Concept_TriangulationDataStructure_2--Face.html

So, e.g it would be "v.point()", but "vh->point()" for a vertex handle.

Best,

Daniel




Archive powered by MHonArc 2.6.18.

Top of Page