Type Definition lowdim::array::Array2d[][src]

pub type Array2d<S, T, L = <Vec2d<S> as Vector<S>>::DefaultLayout> = Array<S, Vec2d<S>, T, L>;
Expand description

A two-dimensional array indexed by points in a bounding box.

The starting index and size is given by a rectangle, i.e. x- and y-index don’t need to start at zero.

Implementations

Creates a new array with the given bounds that is filled from a vector of vectors.