Struct libreda_db::prelude::Polygon
source · [−]pub struct Polygon<T> {
pub exterior: SimplePolygon<T>,
pub interiors: Vec<SimplePolygon<T>, Global>,
}
Expand description
A polygon possibly with holes. The polygon is defined by a hull and a list of holes
which are both SimplePolygon
s.
Fields
exterior: SimplePolygon<T>
The outer hull of the polygon.
interiors: Vec<SimplePolygon<T>, Global>
A list of holes in the polygon.
Implementations
sourceimpl<T> Polygon<T> where
T: Copy,
impl<T> Polygon<T> where
T: Copy,
sourcepub fn all_edges_iter(&self) -> impl Iterator<Item = Edge<T>>
pub fn all_edges_iter(&self) -> impl Iterator<Item = Edge<T>>
Iterate over all edges of the polygon, including interior edges.
sourceimpl<T> Polygon<T> where
T: CoordinateType,
impl<T> Polygon<T> where
T: CoordinateType,
sourcepub fn new<I>(i: I) -> Polygon<T> where
I: Into<Polygon<T>>,
pub fn new<I>(i: I) -> Polygon<T> where
I: Into<Polygon<T>>,
Create a new polygon from a sequence of points.
sourcepub fn new_with_holes<E, I>(exterior: E, holes: Vec<I, Global>) -> Polygon<T> where
E: Into<SimplePolygon<T>>,
I: Into<SimplePolygon<T>>,
pub fn new_with_holes<E, I>(exterior: E, holes: Vec<I, Global>) -> Polygon<T> where
E: Into<SimplePolygon<T>>,
I: Into<SimplePolygon<T>>,
Create a new polygon from a hull and a list of holes.
sourcepub fn convex_hull(&self) -> Polygon<T> where
T: Ord,
pub fn convex_hull(&self) -> Polygon<T> where
T: Ord,
Get the convex hull of the polygon.
Implements Andrew’s Monotone Chain algorithm. See: http://geomalgorithms.com/a10-_hull-1.html
sourcepub fn lower_left_vertex(&self) -> Point<T>
pub fn lower_left_vertex(&self) -> Point<T>
Get the vertex with lowest x-coordinate of the exterior polygon. Prefer lower y-coordinates to break ties.
Examples
use iron_shapes::polygon::Polygon;
use iron_shapes::point::Point;
let coords = vec![(0, 0), (1, 0), (-1, 2), (-1, 1)];
let poly = Polygon::new(coords);
assert_eq!(poly.lower_left_vertex(), Point::new(-1, 1));
sourcepub fn orientation<Area>(&self) -> Orientation where
Area: Num + From<T> + PartialOrd<Area>,
pub fn orientation<Area>(&self) -> Orientation where
Area: Num + From<T> + PartialOrd<Area>,
Get the orientation of the exterior polygon.
Examples
use iron_shapes::polygon::Polygon;
use iron_shapes::point::Point;
use iron_shapes::types::Orientation;
let coords = vec![(0, 0), (3, 0), (3, 1)];
let poly = Polygon::new(coords);
assert_eq!(poly.orientation::<i64>(), Orientation::CounterClockWise);
Trait Implementations
sourceimpl BooleanOp<Ratio<i32>> for Polygon<Ratio<i32>>
impl BooleanOp<Ratio<i32>> for Polygon<Ratio<i32>>
sourcefn boolean_op(
&self,
operation: Operation,
other: &Polygon<Ratio<i32>>,
polygon_semantics: PolygonSemantics
) -> MultiPolygon<Ratio<i32>>
fn boolean_op(
&self,
operation: Operation,
other: &Polygon<Ratio<i32>>,
polygon_semantics: PolygonSemantics
) -> MultiPolygon<Ratio<i32>>
Compute the boolean operation of self
and other
. Read more
sourcefn intersection(&self, other: &Self) -> MultiPolygon<T>
fn intersection(&self, other: &Self) -> MultiPolygon<T>
Compute the boolean intersection self & other
. Read more
sourcefn difference(&self, other: &Self) -> MultiPolygon<T>
fn difference(&self, other: &Self) -> MultiPolygon<T>
Compute the boolean difference self - other
. Read more
sourcefn union(&self, other: &Self) -> MultiPolygon<T>
fn union(&self, other: &Self) -> MultiPolygon<T>
Compute the boolean union self | other
. Read more
sourcefn xor(&self, other: &Self) -> MultiPolygon<T>
fn xor(&self, other: &Self) -> MultiPolygon<T>
Compute the boolean exclusive OR self ^ other
. Read more
sourceimpl BooleanOp<Ratio<i64>> for Polygon<Ratio<i64>>
impl BooleanOp<Ratio<i64>> for Polygon<Ratio<i64>>
sourcefn boolean_op(
&self,
operation: Operation,
other: &Polygon<Ratio<i64>>,
polygon_semantics: PolygonSemantics
) -> MultiPolygon<Ratio<i64>>
fn boolean_op(
&self,
operation: Operation,
other: &Polygon<Ratio<i64>>,
polygon_semantics: PolygonSemantics
) -> MultiPolygon<Ratio<i64>>
Compute the boolean operation of self
and other
. Read more
sourcefn intersection(&self, other: &Self) -> MultiPolygon<T>
fn intersection(&self, other: &Self) -> MultiPolygon<T>
Compute the boolean intersection self & other
. Read more
sourcefn difference(&self, other: &Self) -> MultiPolygon<T>
fn difference(&self, other: &Self) -> MultiPolygon<T>
Compute the boolean difference self - other
. Read more
sourcefn union(&self, other: &Self) -> MultiPolygon<T>
fn union(&self, other: &Self) -> MultiPolygon<T>
Compute the boolean union self | other
. Read more
sourcefn xor(&self, other: &Self) -> MultiPolygon<T>
fn xor(&self, other: &Self) -> MultiPolygon<T>
Compute the boolean exclusive OR self ^ other
. Read more
sourceimpl BooleanOp<f32> for Polygon<f32>
impl BooleanOp<f32> for Polygon<f32>
sourcefn boolean_op(
&self,
operation: Operation,
other: &Polygon<f32>,
polygon_semantics: PolygonSemantics
) -> MultiPolygon<f32>
fn boolean_op(
&self,
operation: Operation,
other: &Polygon<f32>,
polygon_semantics: PolygonSemantics
) -> MultiPolygon<f32>
Compute the boolean operation of self
and other
. Read more
sourcefn intersection(&self, other: &Self) -> MultiPolygon<T>
fn intersection(&self, other: &Self) -> MultiPolygon<T>
Compute the boolean intersection self & other
. Read more
sourcefn difference(&self, other: &Self) -> MultiPolygon<T>
fn difference(&self, other: &Self) -> MultiPolygon<T>
Compute the boolean difference self - other
. Read more
sourcefn union(&self, other: &Self) -> MultiPolygon<T>
fn union(&self, other: &Self) -> MultiPolygon<T>
Compute the boolean union self | other
. Read more
sourcefn xor(&self, other: &Self) -> MultiPolygon<T>
fn xor(&self, other: &Self) -> MultiPolygon<T>
Compute the boolean exclusive OR self ^ other
. Read more
sourceimpl BooleanOp<f64> for Polygon<f64>
impl BooleanOp<f64> for Polygon<f64>
sourcefn boolean_op(
&self,
operation: Operation,
other: &Polygon<f64>,
polygon_semantics: PolygonSemantics
) -> MultiPolygon<f64>
fn boolean_op(
&self,
operation: Operation,
other: &Polygon<f64>,
polygon_semantics: PolygonSemantics
) -> MultiPolygon<f64>
Compute the boolean operation of self
and other
. Read more
sourcefn intersection(&self, other: &Self) -> MultiPolygon<T>
fn intersection(&self, other: &Self) -> MultiPolygon<T>
Compute the boolean intersection self & other
. Read more
sourcefn difference(&self, other: &Self) -> MultiPolygon<T>
fn difference(&self, other: &Self) -> MultiPolygon<T>
Compute the boolean difference self - other
. Read more
sourcefn union(&self, other: &Self) -> MultiPolygon<T>
fn union(&self, other: &Self) -> MultiPolygon<T>
Compute the boolean union self | other
. Read more
sourcefn xor(&self, other: &Self) -> MultiPolygon<T>
fn xor(&self, other: &Self) -> MultiPolygon<T>
Compute the boolean exclusive OR self ^ other
. Read more
sourceimpl BooleanOp<i32> for Polygon<i32>
impl BooleanOp<i32> for Polygon<i32>
sourcefn boolean_op(
&self,
operation: Operation,
other: &Polygon<i32>,
polygon_semantics: PolygonSemantics
) -> MultiPolygon<i32>
fn boolean_op(
&self,
operation: Operation,
other: &Polygon<i32>,
polygon_semantics: PolygonSemantics
) -> MultiPolygon<i32>
Compute the boolean operation of self
and other
. Read more
sourcefn intersection(&self, other: &Self) -> MultiPolygon<T>
fn intersection(&self, other: &Self) -> MultiPolygon<T>
Compute the boolean intersection self & other
. Read more
sourcefn difference(&self, other: &Self) -> MultiPolygon<T>
fn difference(&self, other: &Self) -> MultiPolygon<T>
Compute the boolean difference self - other
. Read more
sourcefn union(&self, other: &Self) -> MultiPolygon<T>
fn union(&self, other: &Self) -> MultiPolygon<T>
Compute the boolean union self | other
. Read more
sourcefn xor(&self, other: &Self) -> MultiPolygon<T>
fn xor(&self, other: &Self) -> MultiPolygon<T>
Compute the boolean exclusive OR self ^ other
. Read more
sourceimpl BooleanOp<i64> for Polygon<i64>
impl BooleanOp<i64> for Polygon<i64>
sourcefn boolean_op(
&self,
operation: Operation,
other: &Polygon<i64>,
polygon_semantics: PolygonSemantics
) -> MultiPolygon<i64>
fn boolean_op(
&self,
operation: Operation,
other: &Polygon<i64>,
polygon_semantics: PolygonSemantics
) -> MultiPolygon<i64>
Compute the boolean operation of self
and other
. Read more
sourcefn intersection(&self, other: &Self) -> MultiPolygon<T>
fn intersection(&self, other: &Self) -> MultiPolygon<T>
Compute the boolean intersection self & other
. Read more
sourcefn difference(&self, other: &Self) -> MultiPolygon<T>
fn difference(&self, other: &Self) -> MultiPolygon<T>
Compute the boolean difference self - other
. Read more
sourcefn union(&self, other: &Self) -> MultiPolygon<T>
fn union(&self, other: &Self) -> MultiPolygon<T>
Compute the boolean union self | other
. Read more
sourcefn xor(&self, other: &Self) -> MultiPolygon<T>
fn xor(&self, other: &Self) -> MultiPolygon<T>
Compute the boolean exclusive OR self ^ other
. Read more
sourceimpl<'de, T> Deserialize<'de> for Polygon<T> where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for Polygon<T> where
T: Deserialize<'de>,
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<Polygon<T>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<Polygon<T>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<T, A> DoubledOrientedArea<A> for Polygon<T> where
T: CoordinateType,
A: Num + From<T>,
impl<T, A> DoubledOrientedArea<A> for Polygon<T> where
T: CoordinateType,
A: Num + From<T>,
sourcefn area_doubled_oriented(&self) -> A
fn area_doubled_oriented(&self) -> A
Calculates the doubled oriented area.
Using doubled area allows to compute in the integers because the area of a polygon with integer coordinates is either integer or half-integer.
The area will be positive if the vertices are listed counter-clockwise, negative otherwise.
Complexity: O(n)
Examples
use iron_shapes::polygon::{Polygon, DoubledOrientedArea};
let coords = vec![(0, 0), (3, 0), (3, 1)];
let poly = Polygon::new(coords);
let area: i64 = poly.area_doubled_oriented();
assert_eq!(area, 3);
sourceimpl<'a, T, P> From<&'a Vec<P, Global>> for Polygon<T> where
T: CoordinateType,
Point<T>: From<&'a P>,
impl<'a, T, P> From<&'a Vec<P, Global>> for Polygon<T> where
T: CoordinateType,
Point<T>: From<&'a P>,
Create a polygon from a Vec
of values convertible to Point
s.
sourceimpl<T> From<&SimplePolygon<T>> for Polygon<T> where
T: Copy,
impl<T> From<&SimplePolygon<T>> for Polygon<T> where
T: Copy,
Create a polygon from a simple polygon.
sourcefn from(simple_polygon: &SimplePolygon<T>) -> Polygon<T>
fn from(simple_polygon: &SimplePolygon<T>) -> Polygon<T>
Converts to this type from the input type.
sourceimpl<T> From<SimplePolygon<T>> for Polygon<T>
impl<T> From<SimplePolygon<T>> for Polygon<T>
Create a polygon from a simple polygon.
sourcefn from(simple_polygon: SimplePolygon<T>) -> Polygon<T>
fn from(simple_polygon: SimplePolygon<T>) -> Polygon<T>
Converts to this type from the input type.
sourceimpl<T, P> From<Vec<P, Global>> for Polygon<T> where
T: Copy,
Point<T>: From<P>,
impl<T, P> From<Vec<P, Global>> for Polygon<T> where
T: Copy,
Point<T>: From<P>,
Create a polygon from a Vec
of values convertible to Point
s.
sourceimpl<T, P> FromIterator<P> for Polygon<T> where
T: Copy,
P: Into<Point<T>>,
impl<T, P> FromIterator<P> for Polygon<T> where
T: Copy,
P: Into<Point<T>>,
Create a polygon from a iterator of values convertible to Point
s.
sourcefn from_iter<I>(iter: I) -> Polygon<T> where
I: IntoIterator<Item = P>,
fn from_iter<I>(iter: I) -> Polygon<T> where
I: IntoIterator<Item = P>,
Creates a value from an iterator. Read more
sourceimpl<T> MapPointwise<T> for Polygon<T> where
T: CoordinateType,
impl<T> MapPointwise<T> for Polygon<T> where
T: CoordinateType,
sourceimpl<T> Serialize for Polygon<T> where
T: Serialize,
impl<T> Serialize for Polygon<T> where
T: Serialize,
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
sourceimpl<T> TryBoundingBox<T> for Polygon<T> where
T: Copy + PartialOrd<T>,
impl<T> TryBoundingBox<T> for Polygon<T> where
T: Copy + PartialOrd<T>,
sourcefn try_bounding_box(&self) -> Option<Rect<T>>
fn try_bounding_box(&self) -> Option<Rect<T>>
Return the bounding box of this geometry if a bounding box is defined.
sourceimpl<T, Dst> TryCastCoord<T, Dst> for Polygon<T> where
T: CoordinateType + NumCast,
Dst: CoordinateType + NumCast,
impl<T, Dst> TryCastCoord<T, Dst> for Polygon<T> where
T: CoordinateType + NumCast,
Dst: CoordinateType + NumCast,
sourceimpl<T> WindingNumber<T> for Polygon<T> where
T: CoordinateType,
impl<T> WindingNumber<T> for Polygon<T> where
T: CoordinateType,
sourcefn winding_number(&self, point: Point<T>) -> isize
fn winding_number(&self, point: Point<T>) -> isize
Calculate the winding number of the polygon around this point.
TODO: Define how point on edges and vertices is handled.
sourcefn contains_point_non_oriented(&self, point: Point<T>) -> bool
fn contains_point_non_oriented(&self, point: Point<T>) -> bool
Check if point
is inside the polygon, i.e. the polygons winds around the point
a non-zero number of times. Read more
sourcefn contains_point(&self, point: Point<T>) -> bool
fn contains_point(&self, point: Point<T>) -> bool
Check if point
is inside the polygon, i.e. the polygon winds around the point
an odd number of times. Read more
impl<T> Eq for Polygon<T> where
T: PartialEq<T>,
Auto Trait Implementations
impl<T> RefUnwindSafe for Polygon<T> where
T: RefUnwindSafe,
impl<T> Send for Polygon<T> where
T: Send,
impl<T> Sync for Polygon<T> where
T: Sync,
impl<T> Unpin for Polygon<T> where
T: Unpin,
impl<T> UnwindSafe for Polygon<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<S, T> RotateOrtho<T> for S where
T: Copy + Zero + Sub<T, Output = T>,
S: MapPointwise<T>,
impl<S, T> RotateOrtho<T> for S where
T: Copy + Zero + Sub<T, Output = T>,
S: MapPointwise<T>,
sourcefn rotate_ortho(&self, a: Angle) -> S
fn rotate_ortho(&self, a: Angle) -> S
Rotate the geometrical shape by a multiple of 90 degrees.