Type Alias Line

Source
pub type Line<F> = Cuboid<F, 1>;
Expand description

1D variant of the Cuboid

Aliased Type§

pub struct Line<F> {
    pub min: [F; 1],
    pub max: [F; 1],
}

Fields§

§min: [F; 1]

Lower bounds of cuboid

§max: [F; 1]

Upper bounds of cuboid