-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renane Configurable -> Demo Use new version of fdg Refactor
- Loading branch information
Showing
6 changed files
with
376 additions
and
186 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[package] | ||
name = "configurable" | ||
name = "demo" | ||
version = "0.1.0" | ||
authors = ["Dmitrii Samsonov <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -11,6 +11,6 @@ egui = "0.27" | |
eframe = "0.27" | ||
serde_json = "1.0" | ||
petgraph = "0.6" | ||
fdg-sim = "0.9" | ||
fdg = { git = "https://github.com/grantshandy/fdg" } | ||
rand = "0.8" | ||
crossbeam = "0.8" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Demo | ||
Demo example allows to alter settings of the `GraphView` widget and see the results immediately. This example also demonstrates the usage of force-directed graph layout implemented on client side with interactive control as well. | ||
|
||
## run | ||
```bash | ||
cargo run --release -p demo | ||
``` |
Oops, something went wrong.