Skip to Content.
Sympa Menu

cgal-discuss - Compil OutputItFaces pb

Subject: CGAL users discussion list

List archive

Compil OutputItFaces pb


Chronological Thread 
  • From: "Patrick Hétroy" <>
  • To:
  • Subject: Compil OutputItFaces pb
  • Date: Wed, 4 Jul 2007 10:24:36 +0200
  • Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:sender:to:subject:mime-version:content-type:x-google-sender-auth; b=e8510EK7ztFuQcK/5c4hfyO1M2W8WaduKj+24vNjKShWV6fzWx2u4KMhAkDxMUxziXA8T3/015ydVnbm8yxbFjLlHcwTa+1vaIVzwkLsgyhlc7Y8sY3x2k+BLBK0Vfp6h7RllE/EDumhc38Vgtvi6YERd2S1Lm8j8aqirt7UepM=

Hi!

I would like to use the OutputItFaces iterator in my Delaunay triangulation 2.
But I cannot access to it... My declaration is :

struct K : CGAL::Exact_predicates_inexact_constructions_kernel {};
typedef CGAL::Triangulation_euclidean_traits_xy_3<K>    Gt;
typedef CGAL::Delaunay_triangulation_2<Gt>                Delaunay;
typedef Delaunay::OutputItFaces                            OutputItFaces;


In my code I have a :

    Delaunay dt;
    //...
    OutputItFaces fit, result;
    Face_handle start();
    result = dt.get_conflicts ( Point_3(0, 0, 0), fit, start);


Error    7    error C2039: 'OutputItFaces' : is not a member of 'CGAL::Delaunay_triangulation_2<Gt>'

How can I deal with this pb ?

In advance thank you !


Patrick




Archive powered by MHonArc 2.6.16.

Top of Page