|
6 months ago | |
---|---|---|
src | 6 months ago | |
.gitignore | 6 months ago | |
Cargo.lock | 6 months ago | |
Cargo.toml | 6 months ago | |
Jenkinsfile | 6 months ago | |
README.md | 6 months ago | |
rustfmt.toml | 6 months ago |
A simple 3D gravitational simulator I wrote in Rust.
First, generate the frames.
cargo run --release -- create
This will generate a bunch of png images in the frames
directory.
Next, create the video.
ffmpeg -i frames/%04d.png out.mp4
The video will be created in the current directory with the name out.mp4
.
This is very much a WIP, and all parameters are hardcoded for now.