Skip to Content.
Sympa Menu

cgal-discuss - [cgal-discuss] Delaunay triangulation problem

Subject: CGAL users discussion list

List archive

[cgal-discuss] Delaunay triangulation problem


Chronological Thread 
  • From: "Seungtaik Oh" <>
  • To:
  • Subject: [cgal-discuss] Delaunay triangulation problem
  • Date: Fri, 9 Nov 2007 15:00:35 +0900
  • Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=W0G4izvII6a5KqsYx5NOhUydXGizWYMwW/BpBCtedk3rogDRK0qpiOh0PBP4ytH7L6WJ3+OnlL26tOu1N4Mvoe9UPn9TCMhGZ/gMzBmCWHIDsU9m8FTU4bPK/37BrtasPYZy2C81eQsFlZbaUjAntTc/oYnPWpBfQB1xdBTryK0=

Hi, all

I am working on something that highly depends on Delaunay
triangulation. However, there comes a bus error when I try to insert
points by the method insert( first iterator, end iterator ). A strange
thing is that the error is only for the case of optimization. No bus
errors without optimization. I am writing the codes on MacOS 10.4.10
and CGAL-3-3-1. What's wrong?

My code looks like this :

==========================================
std::vector<Point> samplePoint;
readSamplingPoints( samplePoint );

// triangulate( 3d Delaunay triangulation)

CGAL::Delaunay_triangulation_3<K> T;
T.insert( samplingPoint.begin(), samplingPoint.end() ) );
===========================================

Thanks in advance.

Seungtaik



Archive powered by MHonArc 2.6.16.

Top of Page