Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danini-the-panini/mandelbrot
Experiments with different ways to generate the Mandelbrot set in a browser
https://github.com/danini-the-panini/mandelbrot
assemblyscript javascript typescript webassembly webgl webgl2 webworkers
Last synced: about 1 month ago
JSON representation
Experiments with different ways to generate the Mandelbrot set in a browser
- Host: GitHub
- URL: https://github.com/danini-the-panini/mandelbrot
- Owner: danini-the-panini
- Created: 2020-02-12T17:47:27.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2023-12-04T12:53:04.000Z (about 1 year ago)
- Last Synced: 2023-12-04T13:49:39.756Z (about 1 year ago)
- Topics: assemblyscript, javascript, typescript, webassembly, webgl, webgl2, webworkers
- Language: TypeScript
- Homepage: https://mandelbrot.danini.dev
- Size: 380 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mandelbrot Experiments
Canvas, WASM, WebWorkers, WebGL, and WebGPU.
# How to get started
1. clone
2. `yarn`
3. `yarn dev -o`
5. Click on some links, click the "Run" button and see things work (or break, depending on your browser)# Supported browsers
- WebWorkers and WebGL are supported on all major browsers.
- WASM should work on all browsers, but could be blocked by security settings.
- WebGPU tested working on Chrome on Windows, and Firefox Nightly on Linux. (Safari might work, I don't have a Mac)# Sources
- [WebGPU](https://github.com/BenjaminAster/WebGPU-Mandelbrot)
- [SIMD](https://github.com/skeeto/mandel-simd)