├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── examples ├── fountain.rs ├── heart.rs └── vortex.rs ├── gif ├── demo_0.gif ├── fountain.gif ├── heart.gif └── vortex.gif └── src ├── bin └── firework │ ├── args.rs │ ├── gen.rs │ └── main.rs ├── config.rs ├── demo.rs ├── fireworks.rs ├── lib.rs ├── particle.rs ├── term.rs └── utils.rs /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wayoung7/firework-rs/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wayoung7/firework-rs/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .vscode 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wayoung7/firework-rs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wayoung7/firework-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wayoung7/firework-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wayoung7/firework-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wayoung7/firework-rs/HEAD/README.md -------------------------------------------------------------------------------- /examples/fountain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wayoung7/firework-rs/HEAD/examples/fountain.rs -------------------------------------------------------------------------------- /examples/heart.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wayoung7/firework-rs/HEAD/examples/heart.rs -------------------------------------------------------------------------------- /examples/vortex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wayoung7/firework-rs/HEAD/examples/vortex.rs -------------------------------------------------------------------------------- /gif/demo_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wayoung7/firework-rs/HEAD/gif/demo_0.gif -------------------------------------------------------------------------------- /gif/fountain.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wayoung7/firework-rs/HEAD/gif/fountain.gif -------------------------------------------------------------------------------- /gif/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wayoung7/firework-rs/HEAD/gif/heart.gif -------------------------------------------------------------------------------- /gif/vortex.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wayoung7/firework-rs/HEAD/gif/vortex.gif -------------------------------------------------------------------------------- /src/bin/firework/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wayoung7/firework-rs/HEAD/src/bin/firework/args.rs -------------------------------------------------------------------------------- /src/bin/firework/gen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wayoung7/firework-rs/HEAD/src/bin/firework/gen.rs -------------------------------------------------------------------------------- /src/bin/firework/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wayoung7/firework-rs/HEAD/src/bin/firework/main.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wayoung7/firework-rs/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/demo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wayoung7/firework-rs/HEAD/src/demo.rs -------------------------------------------------------------------------------- /src/fireworks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wayoung7/firework-rs/HEAD/src/fireworks.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wayoung7/firework-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/particle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wayoung7/firework-rs/HEAD/src/particle.rs -------------------------------------------------------------------------------- /src/term.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wayoung7/firework-rs/HEAD/src/term.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wayoung7/firework-rs/HEAD/src/utils.rs --------------------------------------------------------------------------------