Skip to Content.
Sympa Menu

cgal-discuss - [cgal-discuss] Beginner: Delauny Triangulation in Tecplot-Format

Subject: CGAL users discussion list

List archive

[cgal-discuss] Beginner: Delauny Triangulation in Tecplot-Format


Chronological Thread 
  • From: GGeorge <>
  • To:
  • Subject: [cgal-discuss] Beginner: Delauny Triangulation in Tecplot-Format
  • Date: Thu, 24 Mar 2011 09:40:57 -0700 (PDT)

Hello Mariette,

I want to use CGAL to make a 3D-Delauny-Triangulation for Tecplot (Tecplot
seems to be suited only for 2D).
I started from the example triangulation_prog1.cpp and
triangulation_prog1.cin :
1 0
3 2
4 5
9 8
7 4
5 2
6 3
10 1

Tecplot needs a connectivity list which is based on the line number / order
of the points given:
1 8 6
3 1 2
3 5 4
8 4 5
6 2 1
3 7 5
7 3 6
7 8 5
6 8 7

I started with something like that:
for(Finite_faces_iterator fc = t.finite_faces_begin() ; fc !=
t.finite_faces_end(); ++fc) but the CGAL concept / datastructures are still
quite confusing me to me :(

Is CGAL a good tool to create something like that?
What data-structures / methods of CGAL are helpful for that?
Thank you for your help and for CGAL!

George


--
View this message in context:
http://cgal-discuss.949826.n4.nabble.com/Beginner-Delauny-Triangulation-in-Tecplot-Format-tp3403062p3403062.html
Sent from the cgal-discuss mailing list archive at Nabble.com.



Archive powered by MHonArc 2.6.16.

Top of Page