Skip to Content.
Sympa Menu

cgal-discuss - [cgal-discuss] Re: Triangulate a 3d polygon

Subject: CGAL users discussion list

List archive

[cgal-discuss] Re: Triangulate a 3d polygon


Chronological Thread 
  • From: sgdimitris <>
  • To:
  • Subject: [cgal-discuss] Re: Triangulate a 3d polygon
  • Date: Sat, 21 Apr 2012 06:28:39 -0700 (PDT)

for example I have the following:
std::list<Point_3> L;
L.push_front(Point_3(0,0,0));
L.push_front(Point_3(1,0,0));
L.push_front(Point_3(0,1,0));
L.push_front(Point_3(1,1,0));

Triangulation T(L.begin(), L.end());

How can I take the 2 triangles of T?

--
View this message in context:
http://cgal-discuss.949826.n4.nabble.com/Triangulate-a-3d-polygon-tp4576399p4576410.html
Sent from the cgal-discuss mailing list archive at Nabble.com.



Archive powered by MHonArc 2.6.16.

Top of Page