boostvoronoi 0.12.1

Boost voronoi ported to 100% rust
Documentation
use crate::prelude::*;
use num_traits::AsPrimitive;

impl<T: InputType + nalgebra::Scalar> From<nalgebra::Point2<T>> for Point<T> {
    #[inline]
    /// Converts to `boostvoronoi::geometry::Point` from `nalgebra::Point2`
    /// ```
    /// # use boostvoronoi::prelude::*;
    /// let c = nalgebra::Point2::new(1,2);
    /// let p:Point<i32> = Point::from(c);
    /// assert_eq!(p.x,c.x);
    /// assert_eq!(p.y,c.y);
    /// ```
    fn from(p: nalgebra::Point2<T>) -> Self {
        Self { x: p.x, y: p.y }
    }
}

impl<T: InputType + nalgebra::Scalar> From<&nalgebra::Point2<T>> for Point<T> {
    #[inline]
    /// Converts to `boostvoronoi::geometry::Point` from `&nalgebra::Point2`
    /// ```
    /// # use boostvoronoi::prelude::*;
    /// let c = nalgebra::Point2::new(1,2);
    /// let p:Point<i32> = Point::from(&c);
    /// assert_eq!(p.x,c.x);
    /// assert_eq!(p.y,c.y);
    /// ```
    fn from(p: &nalgebra::Point2<T>) -> Self {
        Self { x: p.x, y: p.y }
    }
}

impl<T: InputType + nalgebra::Scalar> From<Point<T>> for nalgebra::Point2<T> {
    #[inline]
    /// Converts to `geo::Coord` from `boostvoronoi::geometry::Point`
    /// ```
    /// # use boostvoronoi::prelude::*;
    /// let p = Point{x:1,y:2};
    /// let c = nalgebra::Point2::<i32>::from(p);
    /// assert_eq!(p.x,c.x);
    /// assert_eq!(p.y,c.y);
    /// ```
    fn from(p: Point<T>) -> Self {
        Self::new(p.x, p.y)
    }
}

impl<F: nalgebra::Scalar + Copy> From<&Vertex> for nalgebra::Point2<F>
where
    f64: AsPrimitive<F>,
{
    #[inline]
    /// Converts to `nalgebra::Point2` from `&boostvoronoi::diagram::Vertex`
    /// ```
    /// # use boostvoronoi::prelude::*;
    /// # use num_traits::AsPrimitive;
    ///
    /// let v = Vertex::new_3(VertexIndex::default(),1.0,2.0,false);
    /// let p = nalgebra::Point2::<f32>::from(&v);
    /// assert_eq!(v.x(),p.x.as_());
    /// assert_eq!(v.y(),p.y.as_());
    /// ```
    fn from(v: &Vertex) -> Self {
        Self::new(v.x().as_(), v.y().as_())
    }
}

impl<F: nalgebra::Scalar + Copy> From<Vertex> for nalgebra::Point2<F>
where
    f64: AsPrimitive<F>,
{
    #[inline]
    /// Converts to `nalgebra::Point2` from `boostvoronoi::diagram::Vertex`
    /// ```
    /// # use boostvoronoi::prelude::*;
    /// # use num_traits::AsPrimitive;
    ///
    /// let v = Vertex::new_3(VertexIndex::default(),1.0,2.0,false);
    /// let p = nalgebra::Point2::<f32>::from(v.clone());
    /// assert_eq!(v.x(),p.x.as_());
    /// assert_eq!(v.y(),p.y.as_());
    /// ```
    fn from(v: Vertex) -> Self {
        Self::new(v.x().as_(), v.y().as_())
    }
}