egui-graph-edit 0.6.0

A helper library to create interactive node graphs using egui
Documentation
1
2
3
4
5
6
7
8
9
10
use super::*;

#[derive(Debug, thiserror::Error)]
pub enum EguiGraphError {
    #[error("Node {0:?} has no parameter named {1}")]
    NoParameterNamed(NodeId, String),

    #[error("Parameter {0:?} was not found in the graph.")]
    InvalidParameterId(AnyParameterId),
}