egui_xyflow 0.4.1

An interactive node-graph editor widget for egui, inspired by xyflow (React Flow)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Core data types for the flow graph.
//!
//! Re-exported at the crate root for convenience; most users should
//! import via [`crate::prelude`] instead of reaching into submodules.

pub mod position;
pub mod handle;
pub mod node;
pub mod edge;
pub mod viewport;
pub mod connection;
pub mod changes;