Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] Performance of Triangulation_3

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] Performance of Triangulation_3


Chronological Thread 
  • From: mytien <>
  • To:
  • Subject: Re: [cgal-discuss] Performance of Triangulation_3
  • Date: Wed, 16 Oct 2013 06:14:35 -0700 (PDT)

Sorry, of course the code for the evenly distributed points looks like this:

for(int i = 0; i < cloudSize; i++) {
//random coordinates in [0, 2000]
x = rand() % 2000;
y = rand() % 2000;
z = rand() % 2000;
p = CGAL_Point(x, y, z);
points.push_back(p);
numPoints++;
}





--
View this message in context:
http://cgal-discuss.949826.n4.nabble.com/Performance-of-Triangulation-3-tp4658201p4658212.html
Sent from the cgal-discuss mailing list archive at Nabble.com.



Archive powered by MHonArc 2.6.18.

Top of Page