Function surface_flat

Source
pub fn surface_flat<X, Y, Z>(x: X, y: Y, z: Z, rowlen: usize) -> Surface
where X: IntoIterator<Item = f64>, Y: IntoIterator<Item = f64>, Z: IntoIterator<Item = f64>,
Expand description

Create a new Surface from flattened, column-major iterators over coordinate data with row length rowlen.

Panics if rowlen == 0.