reactive_graph_std_color_model/component/alpha.rs
1use crate::NAMESPACE_COLOR;
2use reactive_graph_graph::component_model;
3use reactive_graph_graph::component_ty;
4use reactive_graph_graph::properties;
5
6properties!(AlphaProperties, (ALPHA, "alpha", 0.0));
7
8component_ty!(COMPONENT_ALPHA, NAMESPACE_COLOR, COMPONENT_NAME_ALPHA, "alpha");
9
10component_model!(
11 Alpha,
12 data alpha f64
13);