pub struct MonotonicPolygons<T: GeoNum>(/* private fields */);
Expand description

A multi-polygon represented as a collection of (disjoint) monotone polygons.

This structure is optimized for point-in-polygon queries, and is typically much faster than the equivalent method on Polygon. This is because a single monotone polygon can be tested for intersection with a point in O(log n) time, where n is the number of vertices in the polygon. In contrast, the equivalent method on Polygon is O(n). Typically, a polygon can be sub-divided into a small number of monotone polygons, thus providing a significant speed-up.

Example

Construct a MonotonicPolygons from a Polygon, or a MultiPolygon using MontonicPolygons::from, and query point intersection via the Intersects<Coord> trait.

use geo::prelude::*;
use geo::{polygon, coord};

let polygon = polygon![
    (x: -2., y: 1.),
    (x: 1., y: 3.),
    (x: 4., y: 1.),
    (x: 1., y: -1.),
    (x: -2., y: 1.),
];
let mp = MonotonicPolygons::from(polygon);
assert!(mp.intersects(&coord!(x: -2., y: 1.)));

Implementations§

source§

impl<T: GeoNum> MonotonicPolygons<T>

source

pub fn subdivisions(&self) -> &Vec<MonoPoly<T>>

Get a reference to the monotone polygons.

source

pub fn into_subdivisions(self) -> Vec<MonoPoly<T>>

Reduce to inner Vec of monotone polygons.

Trait Implementations§

source§

impl<T: Clone + GeoNum> Clone for MonotonicPolygons<T>

source§

fn clone(&self) -> MonotonicPolygons<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug + GeoNum> Debug for MonotonicPolygons<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: GeoNum> From<MultiPolygon<T>> for MonotonicPolygons<T>

source§

fn from(mp: MultiPolygon<T>) -> Self

Converts to this type from the input type.
source§

impl<T: GeoNum> From<Polygon<T>> for MonotonicPolygons<T>

source§

fn from(poly: Polygon<T>) -> Self

Converts to this type from the input type.
source§

impl<T: GeoNum> Intersects<Coord<T>> for MonotonicPolygons<T>

source§

fn intersects(&self, other: &Coord<T>) -> bool

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for MonotonicPolygons<T>where T: RefUnwindSafe,

§

impl<T> Send for MonotonicPolygons<T>where T: Send,

§

impl<T> Sync for MonotonicPolygons<T>where T: Sync,

§

impl<T> Unpin for MonotonicPolygons<T>where T: Unpin,

§

impl<T> UnwindSafe for MonotonicPolygons<T>where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<G1, G2> Within<G2> for G1where G2: Contains<G1>,

source§

fn is_within(&self, b: &G2) -> bool