Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] Triangulation_vertex_base_with_info_3 and Regular_triangulation_3 gives compile error on T.insert()

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] Triangulation_vertex_base_with_info_3 and Regular_triangulation_3 gives compile error on T.insert()


Chronological Thread 
  • From: Laurent Rineau <>
  • To: , Monique Teillaud <>
  • Subject: Re: [cgal-discuss] Triangulation_vertex_base_with_info_3 and Regular_triangulation_3 gives compile error on T.insert()
  • Date: Tue, 10 Jul 2007 18:57:03 +0200
  • Organization: Inria, Sophia Antipolis, FRANCE

On Tuesday 10 July 2007 18:37:07 Thomas Zangl - Home wrote:
> Hi!
>
> My typdefs look like this:
> typedef CGAL::Exact_predicates_exact_constructions_kernel K;
> typedef CGAL::Triangulation_vertex_base_with_info_3<CGAL::Color, K> Vb;
> typedef CGAL::Triangulation_data_structure_3<Vb> Tds;

UseĀ :
typedef CGAL::Exact_predicates_exact_constructions_kernel K;
typedef CGAL::Triangulation_vertex_base_with_info_3<CGAL::Color, K> Vb;
typedef CGAL::Regular_triangulation_cell_base_3<K> Cb;
typedef CGAL::Triangulation_data_structure_3<Vb, Cb> Tds;

The Cell type of a regular triangulation needs to be a model of
RegularTriangulationCellBase_3, even though it does not seem to be documented
correctly.

--
Laurent Rineau
INRIA - Sophia Antipolis
BP 93, 2004 Route des Lucioles
06902 Sophia Antipolis Cedex FRANCE




Archive powered by MHonArc 2.6.16.

Top of Page