Open Processing and type a few lines: for(let t=0; t<TWO_PI; t+=0.01) point(cos(5*t)*200, sin(3*t)*200). Run it, and a delicate flower blooms across your canvas, woven from nothing but two trigonometric functions whispering to each other.

This is the strange magic of parametric curves. While Bézier paths dominate vector design tools, an older and richer vocabulary waits beneath them—curves born not from control points but from equations evolving through time.

From the Lissajous patterns dancing on oscilloscopes to the hypnotic spirals etched by a Spirograph, parametric mathematics offers digital artists a generative language where a handful of numbers can produce infinite variation. To work with these curves is to design at the level of behavior itself, sculpting motion rather than shape.

Trigonometric Drawing

Every parametric curve begins with a single insight: separate the x and y coordinates and let each be a function of a third variable, usually called t. As t advances, the point traces a path. Time becomes the brush.

Sine and cosine are the foundational vocabulary here. A circle is just x = cos(t), y = sin(t)—the simplest expression of cyclical motion. But the real artistry begins when you start multiplying frequencies, shifting phases, and nesting these functions inside one another.

Consider x = cos(t) + 0.5*cos(7*t). The base circle is now perturbed by a faster oscillation, creating a fluted, gear-like rim. Add another harmonic and the form ripples with new texture. Each coefficient is a knob; each frequency ratio opens a different aesthetic territory.

This is why creative coders return to trigonometry obsessively. It is not arithmetic but a kind of computational solfège—a small set of recurring tones that, when layered, produce endless melodic forms. Mastering it means thinking in waves rather than points.

Takeaway

Parametric thinking shifts the artist's attention from shape to behavior. You no longer draw the curve; you specify the rules by which time becomes form.

Classic Curve Gallery

The history of mathematics is also a hidden history of visual forms. Lissajous figures, discovered by Jules Antoine Lissajous in 1857, emerge from x = sin(a*t + φ), y = sin(b*t). Change the frequency ratio a:b and the curve transforms—1:1 produces a circle or line, 3:2 yields a graceful figure-eight, irrational ratios trace forms that never quite close.

Rose curves, defined by r = cos(k*θ) in polar coordinates, produce the petaled flowers their name suggests. When k is an integer, you get clean botanical symmetry. When k is rational, the petals overlap into mandala-like density. When irrational, the curve fills space without ever repeating.

Then come the spirals: Archimedean, logarithmic, Fermat's. Each encodes a different relationship between rotation and radius. The logarithmic spiral, r = a*e^(b*θ), is the form of nautilus shells and galaxy arms—growth that preserves its proportions at every scale.

These curves are not historical curiosities. They are tested aesthetic primitives, each with a distinctive visual personality. Knowing them is like knowing your color wheel: you can mix new things, but the fundamentals remain quietly powerful in any composition.

Takeaway

Mathematical curves carry aesthetic identity the way typefaces do. Each equation has a voice, and fluency means recognizing which voice your composition needs.

Parameter Animation Space

A static parametric curve is beautiful. An animated one is alive. The moment you let a parameter drift—even slowly—the entire form begins to breathe, morph, and surprise you with intermediate states you never imagined.

Take a Lissajous figure and animate the phase offset φ from 0 to π over several seconds. The curve doesn't just rotate; it folds through itself, passing through moments of perfect symmetry and asymmetric tension. What looked like a single shape reveals itself as one frame in a continuous family.

This is what creative coders mean by parameter space. Every numeric value in your equation is an axis; the artwork is a region within a high-dimensional manifold. Animation is a path through that space, and good animation finds paths with rhythm—accelerations, pauses, returns.

Tools like Processing, p5.js, and openFrameworks make this exploration immediate. Map a parameter to a slider, to mouse position, to audio amplitude, to time itself. The artwork becomes an instrument, and the curve becomes choreography. You are no longer drawing pictures; you are conducting mathematics.

Takeaway

When parameters become time-based, equations become performances. The artist's role shifts from composer to choreographer of mathematical motion.

Parametric curves remind us that mathematics was always a visual language. The equations physicists and mathematicians refined over centuries were never just calculations—they were descriptions of how forms emerge from rules.

For the digital artist, this inheritance is enormous. A few lines of code can summon centuries of geometric thinking and bend it toward new expressive ends. The vocabulary is small; the territory it opens is vast.

Start with sine and cosine. Add a frequency. Animate a phase. The curves you discover will not be yours alone, but the path you trace through their parameter space will be unmistakably your own.