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}