https://github.com/saphereye/convex-hull-simulation
A web based simulation for Convex Hull algorithms
https://github.com/saphereye/convex-hull-simulation
bevy-engine convex-hull rust
Last synced: 2 days ago
JSON representation
A web based simulation for Convex Hull algorithms
- Host: GitHub
- URL: https://github.com/saphereye/convex-hull-simulation
- Owner: Saphereye
- Created: 2024-02-22T15:44:02.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-07-01T05:23:51.000Z (almost 2 years ago)
- Last Synced: 2025-03-29T19:30:13.420Z (about 1 year ago)
- Topics: bevy-engine, convex-hull, rust
- Language: Rust
- Homepage: https://saphereye.github.io/convex-hull-simulation/
- Size: 37.9 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [Convex Hull](https://en.wikipedia.org/wiki/Convex_hull) Simulation
An interactive simulation allowing users to see Jarvis March and Kirkpatrick Seidel in action. Users can control simulation speed and the number of points dynamically. The simulation is hosted [here](https://saphereye.github.io/Convex-Hull-CS-F364/).
## Screenshots

## How to run
- Install [cargo](https://doc.rust-lang.org/cargo/getting-started/installation.html)
- Run `cargo run --features bevy/dynamic_linking` if you want to make increamenetal changes or `cargo run --release` for release build.
> This project was created for the course CS F364 (Design & Analysis of Algorithms)