pub type Rectangle<F> = Cuboid<F, 2>;
2D variant of the Cuboid
2D
struct Rectangle<F> { pub min: [F; 2], pub max: [F; 2], }
min: [F; 2]
Lower bounds of cuboid
max: [F; 2]
Upper bounds of cuboid