gazpatcho 1.1.0

Simple node-based graph editor for Rust. Register nodes, let the user mingle with them, read the result.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Custom imgui Node widget implementation. This represents a node in a graph.
//! Apart from input/output pins it also provides several widgets allowing users
//! to set arbitrary values per each node.

pub mod button;
pub mod dropdown;
pub mod label;
pub mod multiline_input;
pub mod node;
pub mod pin;
pub mod pin_group;
pub mod slider;