//! ## shapers
//! Routines for operations with shapes.
//!
//! Supported shapes and operations:,
//! | Shape | Status |
//! |---------|------------------------------|
//! | Circle | Fitting (taubinSVD and LSQ) |
//! | Ellipse | Planned |
//!
//! Part of this funcitons are based in <https://github.com/AlliedToasters/circle-fit>
//! and the algorithms implemented by Nicolai Chernov <https://people.cas.uab.edu/~mosya/cl/MATLABcircle.html>
//!
/// Module for circle fitting functions
/// Module for native error types
use *;
extern crate blas_src;