Skip to content
Tech News
← Back to articles

The Mrs Fractal: Mirror, Rotate, Scale (2025)

read original more articles
Why This Matters

The introduction of the Mrs Fractal: Mirror, Rotate, Scale (2025) represents a new approach to fractal rendering, expanding the possibilities for creating complex, self-similar structures beyond traditional Mandelbrot and Julia sets. This innovation could influence graphics, visual effects, and computational art, offering more versatile tools for artists and developers. As fractal generation becomes more sophisticated, it may lead to enhanced visual experiences in gaming, virtual reality, and scientific visualization.

Key Takeaways

Fractal rendering is usually introduced with Mandelbrot or Julia sets, but those are not the only way to generate rich self-similar structure. The MRS fractal is a small iterative system based on three geometric operations:

Mirror space across one or more planes.

Rotate the point around a fixed axis.

Scale and offset the point before the next iteration.

The name is literal; MRS stands for Mirror, Rotate, Scale.

Core idea

Given a 3D point \(p_0\), we iterate:

\[p_{n+1} = s \cdot R\left(M\left(p_n\right)\right) - o\]

where:

\(M\) is a mirror operator.

... continue reading