2021-09-03 19:12:44 +00:00
|
|
|
# [`egui`](https://github.com/emilk/egui) demo library
|
2020-12-29 12:40:11 +00:00
|
|
|
|
2021-09-03 19:12:44 +00:00
|
|
|
[](https://crates.io/crates/egui_demo_lib)
|
|
|
|
[](https://docs.rs/egui_demo_lib)
|
|
|
|
[](https://github.com/rust-secure-code/safety-dance/)
|
|
|
|

|
|
|
|

|
2020-12-29 12:40:11 +00:00
|
|
|
|
2021-09-03 19:12:44 +00:00
|
|
|
This crate contains example code for [`egui`](https://github.com/emilk/egui).
|
2020-12-29 12:40:11 +00:00
|
|
|
|
2021-12-29 20:44:48 +00:00
|
|
|
The demo library is a separate crate for three reasons:
|
2021-09-03 19:12:44 +00:00
|
|
|
|
|
|
|
* To ensure it only uses the public `egui` api.
|
|
|
|
* To remove the amount of code in `egui` proper.
|
2022-04-28 09:23:34 +00:00
|
|
|
* To make it easy for 3rd party egui integrations to use it for tests.
|
|
|
|
- See for instance https://github.com/not-fl3/egui-miniquad/blob/master/examples/demo.rs
|