reactive_graph_std_color_model/component/
brightness.rs

1use crate::NAMESPACE_COLOR;
2use reactive_graph_graph::component_model;
3use reactive_graph_graph::component_ty;
4use reactive_graph_graph::properties;
5
6properties!(BrightnessProperties, (BRIGHTNESS, "brightness", 0.0));
7
8component_ty!(COMPONENT_BRIGHTNESS, NAMESPACE_COLOR, COMPONENT_NAME_BRIGHTNESS, "brightness");
9
10component_model!(
11    Brightness,
12    data brightness f64,
13);