Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] Creating Indices for vertices in Delanuay Triangulation

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] Creating Indices for vertices in Delanuay Triangulation


Chronological Thread 
  • From: Brian Sanjeewa Rupasinghe <>
  • To:
  • Subject: Re: [cgal-discuss] Creating Indices for vertices in Delanuay Triangulation
  • Date: Mon, 23 May 2011 13:09:13 +0100
  • Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=jqxoRKjGVFEamCJbSbZ5RVZaP5Mo0Z1IZQICP1pf9kAp0XDHE8zewZMw6owa8OT5n6 shs4jsymCyXTuFZWBIfS2gM3+P5Wkg0Lu3W5id2Rqz2/GagNkDMuwvigN4XXLsf1rXB8 zEAV1o7U71y88xufAP9FngBmvej/xSdUJdMtY=

Hi,

Thank you very much for the supporting Docs. I will read it through and try.

Brian.

#include <CGAL/Triangulation_face_base_with_info_2.h>
typedef CGAL::Triangulation_face_base_with_info_2<Index, Gt> Info;

But it gives the same error

On Mon, May 23, 2011 at 10:10 AM, Laurent Rineau (GeometryFactory) <> wrote:
On lundi 23 mai 2011 10:13:33 Brian Sanjeewa Rupasinghe wrote:
> Hi,
>
> I added this code. But it did not work. I am relatively new to CGAL. Please
> help.
>
> typedef CGAL::Triangulation_ds_face_base_with_info_2<Index, Gt> Info;

Actually you should use CGAL::Triangulation_face_base_with_info_2<Index,Gt>
but that is the same as far as I know.

My guess is that you did not include the header file that defines that class
template.


Question #1: what is the documentation page of that class?
Answer #1: You can find the link in the reference manual of the
Triangulation_2 package:
 http://www.cgal.org/Manual/latest/doc_html/cgal_manual/Triangulation_2_ref/Chapter_intro.html
That leads you to:
 http://www.cgal.org/Manual/latest/doc_html/cgal_manual/Triangulation_2_ref/Class_Triangulation_face_base_with_info_2.html


Question #2: then, what is the corresponding #include to use.
Answer #2: it is writen in the reference documentation page:

 #include <CGAL/Triangulation_face_base_with_info_2.h>


Please, before your next question, try to read the examples and the manual
around. If you ask too many questions whose answers are easy to find in the
CGAL manual, people here will begin to ignore your messages.

--
Laurent Rineau, PhD
R&D Engineer at GeometryFactory           http://www.geometryfactory.com/
Release Manager of the CGAL Project       http://www.cgal.org/

--
You are currently subscribed to cgal-discuss.
To unsubscribe or access the archives, go to
https://lists-sop.inria.fr/wws/info/cgal-discuss





Archive powered by MHonArc 2.6.16.

Top of Page