Function nannou_core::geom::polygon::contains

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

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.