This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-zerotierone/zeroidc/vendor/wasm-bindgen/guide/src/examples/julia.md

616 B

Julia Set

View full source code or view the compiled example online

While not showing off a lot of web_sys API surface area, this example shows a neat fractal that you can make!

index.js

A small bit of glue is added for this example

{{#include ../../../examples/julia_set/index.js}}

src/lib.rs

The bulk of the logic is in the generation of the fractal

{{#include ../../../examples/julia_set/src/lib.rs}}