Skip to Content.
Sympa Menu

cgal-discuss - [cgal-discuss] Regular_triangulation_vertex_base_3

Subject: CGAL users discussion list

List archive

[cgal-discuss] Regular_triangulation_vertex_base_3


Chronological Thread 
  • From: Vitaliy <>
  • To:
  • Subject: [cgal-discuss] Regular_triangulation_vertex_base_3
  • Date: Sat, 22 Aug 2009 18:58:24 +0200
  • Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:date:x-google-sender-auth:message-id:subject :from:to:content-type; b=sOskW7Oixc1dqOHKkz0LhZePRhf3gGwvzV/+gAiJvbnJq/ZT0k/P8P6OuDr2DFvnWE vVsfhOluZXPNNsIpZvNTU2kMb1+vBvjcqg4Nmmk59iQuY7a+oZ5welHd10y7Mg0TjI4V cskZn57NFA5T76ztbDBtIPx2bw2EKcEMcZtMU=

Hello CGAL members !

Could you help me, how is it possible to make regular triangulation with info in 3D if there is no class CGAL::Regular_triangulation_vertex_base_3? (Only for Kinetic)

It should be like this (in 2D case it works):

typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef CGAL::Regular_triangulation_filtered_traits_3<K> Gt;

typedef CGAL::Regular_triangulation_vertex_base_3<Gt> Vb;   

But there is no such class (only Regular_triangulation_vertex_base_2)

So what must be third parameter in Triangulation_vertex_base_with_info_3 ?

typedef CGAL::Triangulation_vertex_base_with_info_3<int,Gt,Vb> VbI;  
typedef CGAL::Regular_triangulation_cell_base_3<K> Cb;
typedef CGAL::Triangulation_data_structure_3<VbI, Cb> Tds;
typedef CGAL::Regular_triangulation_3<Gt, Tds> RegTr;


Please tell me what should I use for.

Thank you.
Vitaliy



Archive powered by MHonArc 2.6.16.

Top of Page