Skip to Content.
Sympa Menu

cgal-discuss - [cgal-discuss] Re: is fast location for periodic Delaunay broken?

Subject: CGAL users discussion list

List archive

[cgal-discuss] Re: is fast location for periodic Delaunay broken?


Chronological Thread 
  • From: Ariel Keselman <>
  • To:
  • Subject: [cgal-discuss] Re: is fast location for periodic Delaunay broken?
  • Date: Thu, 29 Apr 2010 02:51:36 -0700 (PDT)


Well.. not exactly solved. It compiles, but doesn't run-
program gets stuck at the first insert(begin,end,true);

this is how I defined the triangulation, I need a vertex
with info:

typedef CGAL::Exact_predicates_inexact_constructions_kernel TKernel;
typedef CGAL::Periodic_3_triangulation_traits_3<TKernel> TTraits;
typedef CGAL::Periodic_3_triangulation_ds_vertex_base_3<> TdVBase;
typedef CGAL::Triangulation_vertex_base_3<TTraits,TdVBase> TVBase;
typedef CGAL::Periodic_3_triangulation_ds_cell_base_3<> TdCBase;
typedef CGAL::Triangulation_cell_base_3<TTraits,TdCBase> TCBase;
typedef CGAL::Triangulation_vertex_base_with_info_3<tvi,TTraits,TVBase>
TiVBase_s;
typedef CGAL::Triangulation_hierarchy_vertex_base_3<TiVBase_s> TiVBase; ///
typedef CGAL::Triangulation_data_structure_3<TiVBase, TCBase> TDS;
typedef CGAL::Periodic_3_Delaunay_triangulation_3<TTraits, TDS> TPDT_s;
typedef CGAL::Periodic_3_triangulation_hierarchy_3<TPDT_s> PDT;

--
View this message in context:
http://cgal-discuss.949826.n4.nabble.com/is-fast-location-for-periodic-Delaunay-broken-tp2075170p2075236.html
Sent from the cgal-discuss mailing list archive at Nabble.com.



Archive powered by MHonArc 2.6.16.

Top of Page