pub fn bounding_cuboid<I>(
    vertices: I
) -> Option<Cuboid<<I::Item as Vertex>::Scalar>>
where I: IntoIterator, I::Item: Vertex3d,
Expand description

The Cuboid that bounds the given sequence of vertices.

Returns None if the given iterator is empty.