//! Convenience methods for constructing grids in a way that echoes,
//! but does not exactly match, methods common in scripting languages.
use Itertools;
use Float;
/// Generates evenly spaced values from start to stop,
/// including the endpoint.
/// Generates a meshgrid in C ordering (x0, y0, z0, x0, y0, z1, ..., x0, yn, zn)