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: 魏华祎 <>
  • To:
  • Subject: Re: [cgal-discuss] Which file include the definitions of Vertex_handle and Face_handle?
  • Date: Sun, 14 Apr 2013 09:56:57 +0800

Hi, Daniel,
    
     Thanks for your reply. I mean in the source. Because sometimes I need to save the handles of some faces. After that, the triangulation will be changed by inserting new points. So I care about whether the handle I saved is still valid. So I want to check the implement of the handle class in the source. Is there exist a member function or global function which can check the validity?

Best

Huayi


2013/4/13 Daniel Duque <>
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


--
You are currently subscribed to cgal-discuss.
To unsubscribe or access the archives, go to
https://sympa.inria.fr/sympa/info/cgal-discuss






Archive powered by MHonArc 2.6.18.

Top of Page