Function nannou::geom::polygon::contains[][src]

pub fn contains<I>(points: I, point: &I::Item) -> Option<Tri<I::Item>> where
    I: IntoIterator,
    I::Item: Vertex2d

Returns Some with the touched triangle if the given Point is over the polygon described by the given series of points.

This uses the triangles function internally.