The Kaleidoscope

Responsibilities: VEX coding, Rendering, Grain Simulation

Overview

This work demonstrates the power of coding and mathematics in the 3D world. The setup is quite straightforward, with the main focus on expressing the Chladni line equations through code and animating their parameters. An essential part of the project is the creation of custom materials with reflective qualities, which help achieve the layered effect seen in the final result. The Kaleidoscope depicts a gradual flow of patterns, which creates a relaxing and calming experience for the viewer.

VEX coding

The patterns in this work are inspired by the formation of Chladni lines, which occur when vibrating surfaces create still regions—called nodes—amidst the movement. Mathematically, these patterns are generated using combinations of sine functions to simulate vibrations along the x and y axes, with specific mode numbers (n and m) determining the number of nodes along each axis.

In my code, I used two sine wave interactions—sin(PI*n*x) with sin(PI*m*y) and their mirrored counterparts. The coefficients a and b allowed me to fine-tune the balance between the waveforms, introducing subtle variations. To bring out the still regions, I inverted the amplitude with f@amp = extreme - abs(f@amp);, turning areas of high vibration into areas of calm. This inversion emphasizes the nodes, where Chladni lines naturally appear in the visualization.

Animation

To make the patterns flow into each other, I animated the values of A, B, and M through keyframes. Animating A controlled the overall amplitude, making the patterns grow and shrink in intensity. Animating B adjusted the balance between the two waveforms, adding more complexity to the shapes. Finally, animating M altered the frequency along the y-axis, changing the density and rhythm of the patterns. This created a smooth, evolving transformation between different Chladni patterns.

Here are a couple of examples of patterns with different values:

Rendering

For my particles I chose the preset material Iron because of its metallic shine. The background is a customized Redshift Gold preset, where I increased its diffuse qualities and set the roughness to 0 to ensure that the reflections are sharp. Gold appears to diffuse into blue because, on a microscopic level, it actually absorbs blue light more than other wavelengths, causing the reflected light of the pattern to appear predominantly yellow, which is the complementary color to blue.

Challenges and learning outcomes

My challenge was that the wave pattern appeared weak, with insignificant details in the lower amplitude regions.

My solution was to emphasize the stronger peaks and eliminate unnecessary low-amplitude noise to achieve a cleaner, more distinct result. I introduced the threshold was reduces the baseline amplitude. This line shifts the entire amplitude range downward, cutting off values below 10% of the extreme maximum. As a result, smaller, less noticeable amplitudes are excluded, leaving only the more prominent peaks visible.