I have an object made of points, lets say its point cloud, i want to render object from those points, i want object to look like those points were wrapped in a sheet of paper. I want to animate it, so first thing that came on my mind was marching cubes, but my object will not be a ball or cube, it will morph, is there any simpler approach than marching cubes?

link|improve this question

43% accept rate
It's not quite clear what you're asking. How would these objects morph? – Brad Larson May 26 '11 at 22:30
feedback

2 Answers

up vote 3 down vote accepted
+50

Depending on what you mean by "wrapped" a 3D convex hull may produce the effect that you want.

Animate your vertices however you want and re-run the hull algorithm each time.

link|improve this answer
Thanks, that's what i was looking for :) – ZZZ May 28 '11 at 6:06
Marching cubes can certainly work.. it is in essence an algorithm that determines a 3D convex hull. As for animating, I have an instance running in javascript in webgl and even in javascript when I "dig" in my terrain it seems to animate pretty darn quik -> youtu.be/_oML6USPs20 – user839093 Dec 24 '11 at 18:02
marching cubes are used to generate the iso-surface of the object (given a static or dynamic threshold). It is not necessarily convex. It's not clear whether 'wrapped in a sheet of paper' means convex or not. – killogre Apr 16 at 17:13
feedback

This seems like what you're looking for: http://nehe.gamedev.net/data/lessons/lesson.asp?lesson=25

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.