An open API service indexing awesome lists of open source software.

https://github.com/oliverkovacs/mandelbrot-webgl

Interactive Mandelbrot set visualizer implemented as WebGL GLSL shader
https://github.com/oliverkovacs/mandelbrot-webgl

fractal glsl javascript mandelbrot webgl

Last synced: 3 months ago
JSON representation

Interactive Mandelbrot set visualizer implemented as WebGL GLSL shader

Awesome Lists containing this project

README

        

# mandelbrot-webgl

Online demo: [https://oliverkovacs.github.io/demo/mandelbrot/](https://oliverkovacs.github.io/demo/mandelbrot/)

Use scroll wheel to control the fractal.

### Install
```bash
git clone https://github.com/OliverKovacs/mandelbrot-webgl && cd mandelbrot-webgl
```

### Serve files
```bash
# example using http-server

npm i http-server
http-server

# open http://localhost:8080/ in a browser
```