Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] how to check if a halfedge handle is valid?

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] how to check if a halfedge handle is valid?


Chronological Thread 
  • From: Eric Berberich <>
  • To:
  • Subject: Re: [cgal-discuss] how to check if a halfedge handle is valid?
  • Date: Thu, 14 Aug 2008 00:25:33 +0200

Shi Yan wrote:
hello guys,

i have a halfedge handle which i need to check its validity after a
set of operations, but i don't know how.

can i do something like if( h == NULL ) , where h is the halfedge handle?

thank you.

In Arrangements we have:

Halfedge_handle invalid_he;

if (h == invalid_he) {
// ... my code
}

eriC




Archive powered by MHonArc 2.6.16.

Top of Page