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
//! Rendering subsystem: canvas orchestration, node/edge/handle/background renderers.

pub mod background;
pub mod canvas;
pub mod connection_renderer;
pub mod edge_renderer;
pub mod handle_renderer;
pub mod markers;
pub mod minimap;
pub mod node_renderer;
pub mod selection_renderer;