Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] 3D surface meshing

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] 3D surface meshing


Chronological Thread 
  • From: "Mahbubunnabi Tamal" <>
  • To:
  • Subject: Re: [cgal-discuss] 3D surface meshing
  • Date: Tue, 12 Jun 2007 16:37:31 +0100
  • Domainkey-signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=beta; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=owsPxpQfACjCnGbWqAfGzEhmNpBt5tnUhmyLAZZ0OkBclrIUYW+0dMzCF0/aGQmi6c6kZXJh65tWImWFnR2kmHmXw7aPV2EZPj/NEAOyr62ORTmvJNfwoltZMP+l0+firB4sAWtB73aok40h6SauZDuXoroaQoAIcnzOsjSwBK4=



On 11/06/07, Laurent Rineau <> wrote:
On Monday 11 June 2007 17:15:52 Mahbubunnabi Tamal wrote:
> Hi
>
> Since I am very new to the field, I would be very grateful if you could
> please provide
> some sort of example for 3D surface meshing from clouds of points.

As I told you, we (CGAL developers) have code already implemented for that.

There exists litterature about implicit functions computed from a set of
points, but it is not implemented in CGAL.

--
Laurent Rineau
INRIA - Sophia Antipolis
BP 93, 2004 Route des Lucioles
06902 Sophia Antipolis Cedex FRANCE
--
You are currently subscribed to cgal-discuss.
To unsubscribe or access the archives, go to
https://lists-sop.inria.fr/wws/info/cgal-discuss

 The vertices defined by x,y and z coordinates
  x1 y1 z1
  .. ...
  xN yN zN

are already on the surface or extracted from the surface (noise free). I just need to do 3D surface meshing using these coordinates. After reading these coordinates from a text file I am having problem to pass them on to the function

Surface_3 surface(sphere_function,              // pointer to function
                    Sphere_3(CGAL::ORIGIN, 2.)); // bounding sphere

I am not sure how to use the pointer to the function. I guess the 'function' should be a 3D coordinates. How could I use these points in surface meshing?

Regards
Tamal




Archive powered by MHonArc 2.6.16.

Top of Page