SamSuka
John Kunz

John Kunz

patreon


John Kunz activity

Elevation Isolines from Heightfield

This is an optimized method to generate elevation isolines from a heightfield, or using noise generated in VOPs.


Using compiled forloop SOPs, the whole process is able to be multithreaded and each elevation line can be generated in parallel.

View Post

Animated Subdivisions

This was the original reason I was animating boxes sliding around.  I had a setup that could fill space with boxes subdivided to varying depths of detail (this is the first setup in the file).  

I wanted to be able to smoothly animate between different iterations of subdivision. &...

View Post

More Boxes !!11!1!

Ended up stumbling into something very similar to Nicolas Daniel's animations (https://twitter.com/nicolasdnl/status/1344713981718650880) with some of the effects I was developing, just added a few ...

View Post

Squash Stretch Deformer

Squash and stretch effect by remapping the point positions along each axis.  We take the input coordinates and redistribute the distribution along each axis.

One method with a spline ramp which is a nice way to 'sculpt' the deformation visually.

Another method uses bias() and gai...

View Post

Rack Focus Camera Effect

Animated rack focus camera effect.  I tried some expressions to do it procedurally, but couldn't find any way to make it look natural and easily adjustable.


Based off of references I looked at (like the amazing shot from The Young Victoria 2020-12-02 02:04:31 +0000 UTC View Post

Analytic Spring Function with VEX

Using the spring function to procedurally animate extrusions.  This gives you a nice jiggle style effect.  Compare with a linear animation in the second image.


// Spring Decay Function

float a = .5; // Damp

float w = 15.0; // Freq

@P.y = -(pow(2.7, -@T...

View Post

Procedural Radial Array

Start with a simple outline path and a circle.

Complexity is quickly created by combining multiple copy, transform and path deform operations.


The base shape is packed before replicating it to allow instancing to be used at render time.

View Post

Vertigo Dolly Zoom Camera Effect

Wanted to figure out how to set this up via expressions after seeing Blake Kathryn's animations https://twitter.com/blakekathryn/status/1322193983401910273


Ended up with something ...

View Post