https://github.com/fildon/rust-render
https://github.com/fildon/rust-render
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fildon/rust-render
- Owner: fildon
- Created: 2023-07-30T03:30:28.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-06T18:26:35.000Z (almost 3 years ago)
- Last Synced: 2025-12-30T12:35:38.187Z (6 months ago)
- Language: Rust
- Size: 661 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rust Render
A project to render animated scenes using Rust compiled to WASM
[Deployed on rupertmckay.com](https://rupertmckay.com/rust-render)
## Local Development
1. Install project dependencies
```sh
npm i
```
2. Build project
```sh
npm run build
```
3. Serve build output on localhost
```sh
npm run serve
```
4. Open [localhost](http://localhost:8080/)
## Thanks
Huge thanks to the [wasm-bindgen docs](https://rustwasm.github.io/wasm-bindgen/examples/julia.html) for fantastic documentation and a thorough collection of examples.