Metaballs
This article has multiple issues. Please help improve it or discuss these issues on the talk page. (Learn how and when to remove these messages)
|
In computer graphics, metaballs, also known as blobby objects,[1][2] are organic-looking n-dimensional isosurfaces, characterised by their ability to meld together when in close proximity to create single, contiguous objects.
In solid modelling, polygon meshes are commonly used. In certain instances, however, metaballs are superior. A metaball's "blobby" appearance makes them versatile tools, often used to model organic objects and also to create base meshes for sculpting.[3]
The technique for rendering metaballs was invented by Jim Blinn in the early 1980s to model atom interactions for Carl Sagan's 1980 TV series Cosmos.[4] It is also referred to colloquially as the "jelly effect" in the motion and UX design community,[5] commonly appearing in UI elements such as navigations and buttons. Metaball behavior corresponds to mitosis in cell biology, where chromosomes generate identical copies of themselves through cell division.
Definition
[edit]Each metaball is defined as a function in n dimensions (e.g., for three dimensions, ; three-dimensional metaballs tend to be most common, with two-dimensional implementations popular as well). A thresholding value is also chosen, to define a solid volume. Then,
that is, all points larger than the threshold are inside the metaball.
As a more informal definition, consider two circles in 2D, and at point P, the influence of each circle is proportional to 1/distance from the circle's center, with the influence at P being the sum of influences. If that sum equals the threshold at point P, then P is on the surface of the metaball. If the sum is greater than the threshold, P is inside the metaball.
Implementation
[edit]A typical function chosen for metaballs is simply inverse distance, that is, the contribution to the thresholding function falls off asymptotically toward zero the distance from the centre of the metaball increases:
where scales the magnitude of the contribution (changing the radius of a metaball) and is the distance from the ball's center, calculated from cartesian coordinates as:
where is the center of the metaball.
Various other falloff functions have historically been used for reasons of computational efficiency. Desirable properties of the function include:
- Finite support. A function with finite support goes to zero at a maximum radius. When evaluating the metaball field, any points beyond their maximum radius from the sample point can be ignored. Nearest neighbor search can ensure only adjacent metaballs need to be evaluated regardless of the total number in the field.
- Smoothness. Because the isosurface is the result of adding the fields together, its smoothness is dependent on the smoothness of the falloff curves.
More complicated models use an inverse square law, or a Gaussian potential constrained to a finite radius or a mixture of polynomials to achieve smoothness. The Soft Object model by the Wyvill brothers provides higher degree of smoothness.[citation needed]
A simple generalization of metaballs is to apply the falloff curve to distance-from-lines or distance-from-surfaces.
There are a number of ways to render the metaballs to the screen. In the case of three dimensional metaballs, the two most common are brute force raycasting and the marching cubes algorithm.
2D metaballs were a very common demo effect in the 1990s. The effect is also available as an XScreenSaver module.
See also
[edit]References
[edit]- ^ "blobby model". A Dictionary of Computing. Oxford University Press. 2019. Retrieved 2023-10-27 – via www.encyclopedia.com.
- ^ Ward, Matthew. "An Overview of Metaballs/Blobby Objects". Worcester Polytechnic Institute. Retrieved 2023-10-27.
- ^ "Art of Joe Daniels: Digital Sculpting Tutorial". 8 October 2007.
- ^ "CG Notes: Metaballs Intro".
- ^ "The "jelly effect" has recently been very popular and used in lots of animations. … | After effect tutorial, Adobe after effects tutorials, Motion graphics tutorial". Pinterest. Retrieved 2020-08-11.
Further reading
[edit]- Blinn, J. F. (July 1982). "A Generalization of Algebraic Surface Drawing". ACM Transactions on Graphics. 1 (3): 235–256. doi:10.1145/357306.357310. S2CID 24838292.
External links
[edit]- Implicit Surfaces article by Paul Bourke
- Meta Objects article from Blender wiki
- Metaballs article from SIGGRAPH website
- "Exploring Metaballs and Isosurfaces in 2D", 3 September 2008, Stephen Whitmore, gamedev.net