Projects

Fractals

Mandelbrot Visualization

A zoomable Mandelbrot explorer that turns complex-number iteration into an interactive visual surface.

JavaScript
p5.js
Fractals
Mandelbrot Visualization preview

Why It Is Useful

The project helps make abstract math tangible. Instead of only reading the formula, users can navigate the fractal and connect iteration depth to visible structure.

Problem It Solves

The Mandelbrot set is defined by a compact equation, but the interesting behavior only becomes obvious when many points are sampled and rendered.

Real-World Applications

  • Scientific visualization of dense numeric fields.
  • Interactive educational tools for complex numbers and iteration.
  • Rendering systems where color maps reveal hidden structure in computed data.

Concepts Used

  • Complex-number iteration
  • Coordinate transforms
  • Pixel-to-plane mapping
  • Progressive visual exploration

Solution Used

  • Each pixel maps to a point on the complex plane.
  • The sketch iterates the Mandelbrot recurrence and colors pixels by escape behavior.
  • Zoom and undo controls let the user explore detail without losing orientation.