-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed nodes API. Added interactice example (#27)
- Dynamic generation selection - Node.radius is private field - selection depth param in SettingsStyle - primary selection color in SettingsStyle for directly selected node - secondary selection color in SettingsStyle for sub selections - added interactive example
- Loading branch information
Showing
18 changed files
with
1,234 additions
and
808 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 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,6 +1,6 @@ | ||
[package] | ||
name = "egui_graphs" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
authors = ["Dmitrii Samsonov <[email protected]>"] | ||
license = "MIT" | ||
homepage = "https://github.com/blitzarx1/egui_graphs" | ||
|
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
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,6 +1,6 @@ | ||
[package] | ||
name = "basic" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
authors = ["Dmitrii Samsonov <[email protected]>"] | ||
license = "MIT" | ||
edition = "2021" | ||
|
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,14 @@ | ||
[package] | ||
name = "configurable" | ||
version = "0.3.0" | ||
authors = ["Dmitrii Samsonov <[email protected]>"] | ||
license = "MIT" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
egui_graphs = { path = "../../" } | ||
egui = "0.21.0" | ||
eframe = "0.21.3" | ||
petgraph = "0.6" | ||
fdg-sim = "0.9.1" | ||
rand = "0.8.4" |
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,8 @@ | ||
# Configurable | ||
Configurable example where you can toggle settings of the `GraphView` widget and see the result immediately. | ||
It also contains controls to play with the graph. | ||
|
||
## run | ||
```bash | ||
cargo run --release -p configurable | ||
``` |
Oops, something went wrong.