Procedural animation
Angular rotation
In procedural animation, especially when creating effects like a tornado, we use angular speed to simulate the natural motion where different parts of the tornado rotate at different speeds. In a tornado, the narrower, lower part spins faster than the wider, upper part due to the conservation of angular momentum. This variation in spin speed creates a realistic swirling effect.
Here’s a small example of how to create such an animation using VEX in Houdini. This method can be used for standalone procedural animations or as a foundation for more complex simulations.
VEX example
In this example:
- radius - is determined by a ramp parameter, controlling the scaling based on the position along the tornado.
- angular_vel - defines the base angular velocity, increasing over time.
- speed - is calculated by dividing the angular velocity by the radius, making the
speed
higher at the bottom where theradius
is smaller. - rot and quat1 are quaternions used to handle rotation, ensuring smooth and continuous angular motion.