Skip to Content.
Sympa Menu

cgal-discuss - [cgal-discuss] incident_facets function of a Delaunay triangulation

Subject: CGAL users discussion list

List archive

[cgal-discuss] incident_facets function of a Delaunay triangulation


Chronological Thread 
  • From: Query Cgal <>
  • To:
  • Subject: [cgal-discuss] incident_facets function of a Delaunay triangulation
  • Date: Sat, 21 Mar 2009 05:15:38 -0700 (PDT)
  • Domainkey-signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com.hk; h=Message-ID:X-YMail-OSG:Received:X-Mailer:Date:From:Subject:To:MIME-Version:Content-Type; b=Xg3AdflUGN4j7uDsbejXEVRlFvq5onYvSsloV7H9AM8+SUoMC/Kb+rcReJll/GdqTK49TleZjt/jA+wByryB+xkXJlaCkq0YOiF/oNBfWC5YLp3aLpnSMOQFDZ2iioxzTHibd8JJ1xcBcgHLzUsBnZ/AW2aJevQJ5LPW/qnWxLY=;

Hi, I have tried to use the function below

template <class OutputIterator>
OutputIterator t.incident_facets ( Vertex_handle v, OutputIterator facets)


Copies all Facets incident to v to the output iterator facets. Returns the resulting output iterator.
Precondition: t.dimension() >1, v Vertex_handle(), t.is_vertex(v)..
 
When I tried to used it in the following way but it didn't work,

vector<Finite_facets_iterator> f;
Dt.incident_facets(start, back_inserter(f));

May I ask in what other way should I use the Output iterator then ?

Thank you








Yahoo!香港提供網上安全攻略,教你如何防範黑客!了解更多


Archive powered by MHonArc 2.6.16.

Top of Page