This commit is contained in:
djmil 2024-04-29 14:25:45 +02:00
parent bf2c799ce2
commit 7f387cbaa0
2 changed files with 16 additions and 2 deletions

4
.gitignore vendored
View File

@ -1,3 +1,7 @@
.obsidian/*
.vscode/*
# ---> Rust # ---> Rust
# Generated by Cargo # Generated by Cargo
# will have compiled files and executables # will have compiled files and executables

View File

@ -1,3 +1,13 @@
# egui-circles
Immediate Mode GUI app, with basic simulation of a perfectly elastic collision between balls Immediate Mode GUI app with naive visualisation for elastic balls collisions.
# Build & run
```bash
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh # install rust
cargo run --package=egui-circles # build & run
```
# HowTo
Detailed information on how to use [egui](https://github.com/emilk/egui) rust library can found [here](https://egui.info/).