Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] How to get all the triangles having one same vertex quickly

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] How to get all the triangles having one same vertex quickly


Chronological Thread 
  • From: jiju peethambaran <>
  • To:
  • Subject: Re: [cgal-discuss] How to get all the triangles having one same vertex quickly
  • Date: Fri, 1 Nov 2013 05:07:27 -0700 (PDT)

Use face circulator for this. An example code is the following:

Face_circulator fc=this->incident_faces(v),done(fc);
do{
statements;
}while(++fc!=done);





--
View this message in context:
http://cgal-discuss.949826.n4.nabble.com/How-to-get-all-the-triangles-having-one-same-vertex-quickly-tp4658357p4658358.html
Sent from the cgal-discuss mailing list archive at Nabble.com.



Archive powered by MHonArc 2.6.18.

Top of Page