├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── Makefile ├── README.md ├── index.css ├── index.html └── src ├── lib.rs └── lsystem.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | pkg -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spockuto/LSystems/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spockuto/LSystems/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spockuto/LSystems/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Lindenmayer systems 2 | 3 | ``` 4 | wasm-pack build --target web 5 | ``` -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spockuto/LSystems/HEAD/index.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spockuto/LSystems/HEAD/index.html -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spockuto/LSystems/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/lsystem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spockuto/LSystems/HEAD/src/lsystem.rs --------------------------------------------------------------------------------