The blob returns !!

Posted: 04 Nov 2013 17:40
Tags: blobby

Actually, there is much more to blobs than adding mere spheres. XRT implementation supports various operations and field functions.

Operations

A max operation is roughly equivalent to a union operation in CSG whereas the min operation is like an intersection. Max is used most of the time to prevent blending between shapes. In the following pictures, a hand is modelled from several blobby ellipsoids, first with no blending at all, then with all shapes blended together, then with blending selectively disabled between fingers. For each of the four fingers, the blobs describing it are added together, along with the adjacent blobs at the edge of the palm. A separate added-together group is made of all the palm blobs. The whole field function is just the max of these five overlapping blending groups.

hand.jpg

Another useful operation is sub, which substracts one field from another. As illustrated in the following picture, depending on the strength of the field, we can either put a dent in it (left topmost shape) or dig a hole through it (right topmost shape). The bottom row is the max of two fields to help visualizing them.

dent.jpg

There are three other supported operations: mul (multiply fields), neg (negate a field) and div (divide two fields) but I have not yet found any meaningful usage of these. Therefore, I'll skip them.

Field functions

XRT implements field functions as plugins. Let me present you some of them.

Capsule

capsule1.jpg

A capsule field function is the distance field built from a line segment (ideally suited for sausage or spaghetti like shapes). Note how the shapes smoothly blend when their respective line segments are abutting (whether they share the same orientation or not). Actually, if you subdivide a capsule into a sum of shorter capsules, the resulting field is exactly the same as the single capsule.

Here are more spaghettis (the sum of 480 capsules in a toroidal spiral)

segspiral.jpg

Cube

cube.jpg

A cube field function defines a cube centered at the origin. Pretty lame, isn't it ? Things get more interesting when the cube is combined with other shapes.

manycubes.jpg

Plane

A plane field fuction defines a unit square in the xy-plane, at z=0, centered at the origin.

blobplane.jpg

Plop!!

Rate this post:

rating: 0+x

Comments: 0