pub trait Align2D<T = Self> { // Required method fn align_2d(&self, direction: Vec2, spacing: Length) -> T; }
Trait to align a 2D geometry collection with spacing along an axis.
Align geometry.