//! This module contains useful helper functions.
use ;
use num;
use RealType;
/// Compute the bounds of a (3, N) array
///
/// This function returns a (3, 2) array `bounds`, where `bounds[i][0]`
/// is the lower bound along the ith axis, and `bounds[i][1]` is the
/// upper bound along the jth axis.
///
/// # Arguments
///
/// * `arr` - A (3, N) array.
///