No description
.github/workflows | ||
.kubernetes | ||
src | ||
.gitignore | ||
BeepSortMacroQuad.iml | ||
Cargo.lock | ||
Cargo.toml | ||
Dockerfile | ||
index.html | ||
README.md |
Work in progress!
A visualization of sorting!
This is a clone of the project The Sound of Sorting without the sound (for now)
It is written using the tiny game engine MacroQuad
WebAssembly version can be found here beepsort.polsevev.dev
TODO:
- Implement sound using browser API
- Clean up user interface, perhaps move to JS?
- Add more visualization modes (circle, points etc)
- Add more algorithms
Contributing
If you wish to contribute an algorithm to this project, i encourage it!
Algorithms are located in Algorithm.rs and are made as follows!
- Create a case in the match located in the function run
- Implement the algorithm as an async function
- Whenever you wish to swap two elements, do so in the following manner:
if list.swap(a,b).await {return}
- This ensures we can exit the run of the algorithm if the user clicks "Exit"
- Add a button on the front page (will move to a menu in the future!)
- Success!!!!!