nd_icp/
lib.rs

1//! # nd-ICP
2//!
3//! `nd-icp` is a generic n dimensional implementation of the ICP algorithm based on SVD and the
4//! nalgebra linear algebra library
5pub mod icp;
6pub mod types;
7pub mod utils;