hilbert 0.1.2

Hilbert curve transform and inverse for points having two to thousands of dimensions, using Skilling's algorithm.
Documentation
//! The Hilbert module contains these sub-modules: 
//! 
//!   - normalize - To prepare data for transformation.
//!   - permutation - To reorder point coordinates as a means of generating alternate Hilbert curves.
//!   - point_list - Prepare points from i32 or f64 data, deriving and applying a consistent transform to each.
//!   - point - Represents an N-dimensional point suitable to be transformed and sorted by the Hilbert Curve.
//!   - transform - Performs the core Hilbert Curve transform and its inverse.
extern crate num;
pub mod point;
pub mod point_list;
pub mod transform;
pub mod interleaver;
pub mod normalize;
pub mod permutation;

// Public API.
pub use self::normalize::IntegerDataRange;
pub use self::normalize::FloatDataRange;
pub use self::permutation::Permutation;
pub use self::point::Point;
pub use self::point_list::make_points_f64;
pub use self::point_list::make_points_i32;
pub use self::transform::fast_hilbert;


#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}