Skip to Content.
Sympa Menu

cgal-discuss - [cgal-discuss] Vertex_handle

Subject: CGAL users discussion list

List archive

[cgal-discuss] Vertex_handle


Chronological Thread 
  • From: Dennis Endt <>
  • To:
  • Subject: [cgal-discuss] Vertex_handle
  • Date: Tue, 07 Oct 2008 17:25:42 +0200
  • Domainkey-signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; b=eEpDklIznqLBOTL04GbSByxWpE13pnDwM1u1pDQLUCirNVitEmIdglLdFELFmLXE8J RcapPwD/8ULj7wu0kItw6a4r2aAGMCbcc2e9dUN+hYifpTWrZG1JjRgfljrT4ht7uj8v r84PMFogi4NJeTjvUAgc3ldZJCH+ESv67VF/M=

Hi,

thats my Problem:
/typedef CGAL::Simple_cartesian<double> SK;
typedef CGAL::Filtered_kernel<SK> FK;
struct K : public FK {};

typedef K::Point_3 dPoint;
typedef CGAL::Delaunay_triangulation_3<K> Triangulation;
typedef Triangulation::Vertex_handle Vertex_handle;

Triangulation T;

list<Vertex_handle> vertices; // vector to hold the points of the convex
hull
T.incident_vertices(T.infinite_vertex(), back_inserter(vertices)); //
get the points from Delaunay/

Can anyone plz tell how I get access to the points corresponding to the
vertex_handles? It is very urgent.

I tried everything so far...it cannot be so difficult ;)

Best Dennis



Archive powered by MHonArc 2.6.16.

Top of Page