Pritesh
Pritesh

Reputation: 3288

Tessellation in 3D

I have a set of Points in 3D space. The image below is an example:

enter image description here

I would like to turn these points into a surface. I just know the X,Y and Z values of the points. For example, check out the image below, which shows a mesh of a human face generated from points in 3D space.

enter image description here

i googled so much but, what i found is some images and explaination but no one has explained with practical aspect and practical example. is there any good or best algorithms which help me to solve this problem. Please.... Thaks...........

Upvotes: 0

Views: 2475

Answers (1)

Michael S.
Michael S.

Reputation: 701

You want to do a Delaunay-Triangulation. See example application here: http://www.geometrylab.de/VoroGlide/.

Upvotes: 1

Related Questions