Skip to content

Joy of Vex Day 10

relpointbbox

I mentioned earlier that normalising values makes a lot of operations easier, saves you having to mentally scale values to match. This is easy for normals, but you can't just do normalize(@P), you'll get unexpected results (try it on a pig or tommy):

vex
 @P = normalize(@P);
 @P = normalize(@P);

Poor piggy. If you used the 'sphereize' modifier in 3dsmax, this is essentially what it was doing.

Vex gives you another handy function, relpointbbox. That mouthful means it puts a bounding box around your shape, sets the lower left corner as 0,0,0, upper right as 1,1,1, and returns where each point is relative to that bounding box. Easier to see mapped to colour than to explain:

vex
 @Cd = relpointbbox(0, @P);
 @Cd = relpointbbox(0, @P);

If you store this in a variable first, you have a nice quick way to get a clean 0 to 1 gradient across, from top to bottom, or front to back:

vex
 vector bbox = relpointbbox(0,@P);
 @Cd = bbox.y;
 vector bbox = relpointbbox(0,@P);
 @Cd = bbox.y;

So now its easy to inflate the mesh on its normals, ramped from top to bottom:

vex
 vector bbox = relpointbbox(0,@P);
 @P += @N*bbox.y*ch('scale');
 vector bbox = relpointbbox(0,@P);
 @P += @N*bbox.y*ch('scale');

Or drive it with a chramp, so you can puff it out halfway, and fade it at the ends:

vex
 vector bbox = relpointbbox(0,@P);
 float i = chramp('inflate',bbox.y);
 @P += @N*i*ch('scale');
 vector bbox = relpointbbox(0,@P);
 float i = chramp('inflate',bbox.y);
 @P += @N*i*ch('scale');

You might say 'why not just use @P.y?'. Well, because these effects are now relative to the bounding box of the shape, you can feed in any geometry, of any size, and it will work without you having to do too much readjusting.

Exercises

  1. A taper effect from top to bottom
  2. Noise that scales left to right across a grid
  3. Colour driven by a ramp, so you get this kind of control:


prev: JoyOfVex09 this:JoyOfVex10 next:JoyOfVex11
main menu: JoyOfVex