egui_graphs 0.30.0

Interactive graph visualization widget for rust powered by egui
Documentation
1
2
3
4
5
6
7
8
fn main() -> eframe::Result<()> {
    let native_options = eframe::NativeOptions::default();
    eframe::run_native(
        "egui_graphs demo",
        native_options,
        Box::new(|cc| Ok::<Box<dyn eframe::App>, _>(Box::new(demo_core::DemoApp::new(cc)))),
    )
}