[][src]Trait rin::math::InsidePolygon

pub trait InsidePolygon<T: Real> {
    fn inside_polygon(&self, polygon: &Polyline<T>, bound: bool) -> bool;
}

Trait to check if a point is inside a polygon

Required Methods

Implementors

impl<T: Real + NumCast> InsidePolygon<T> for Pnt2<T>
[src]