Struct libreda_db::layout::prelude::Polygon [−][src]
pub struct Polygon<T> where
T: CoordinateType, {
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 SimplePolygons.
Fields
exterior: SimplePolygon<T>The outer hull of the polygon.
interiors: Vec<SimplePolygon<T>, Global>A list of holes in the polygon.
Implementations
Create a new polygon from a sequence of points.
pub 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.
Get the convex hull of the polygon.
Implements Andrew’s Monotone Chain algorithm. See: http://geomalgorithms.com/a10-_hull-1.html
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));
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(), Orientation::CounterClockWise);
Trait Implementations
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<Polygon<T>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub 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
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);
assert_eq!(poly.area_doubled_oriented(), 3);
Create a polygon from a rectangle.
Create a polygon from a simple polygon.
Performs the conversion.
Create a polygon from a Vec of values convertible to Points.
Create a polygon from a rectangle.
Create a polygon from a simple polygon.
Performs the conversion.
Create a polygon from a Vec of values convertible to Points.
Create a polygon from a iterator of values convertible to Points.
Creates a value from an iterator. Read more
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
pub 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
Return the bounding box of this geometry if a bounding box is defined.
impl<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,
Calculate the winding number of the polygon around this point.
TODO: Define how point on edges and vertices is handled.
Check if point is inside the polygon, i.e. the polygons winds around the point
a non-zero number of times. Read more
Check if point is inside the polygon, i.e. the polygon winds around the point
an odd number of times. Read more
Auto Trait Implementations
impl<T> RefUnwindSafe for Polygon<T> where
T: RefUnwindSafe,
impl<T> UnwindSafe for Polygon<T> where
T: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Rotate the geometrical shape by a multiple of 90 degrees.