Skip to main content

ferrum_flow/
alignment_guides.rs

1/// World-space alignment guides while dragging nodes (vertical x, horizontal y).
2#[derive(Debug, Clone, Default)]
3pub struct AlignmentGuides {
4    pub vertical_x: Vec<f32>,
5    pub horizontal_y: Vec<f32>,
6}