[−][src]Struct geo::Rect
A bounded 2D quadrilateral whose area is defined by minimum and maximum Coordinates.
Fields
min: Coordinate<T>max: Coordinate<T>Methods
impl<T> Rect<T> where
T: CoordinateType, [src]
T: CoordinateType,
pub fn new<C>(min: C, max: C) -> Rect<T> where
C: Into<Coordinate<T>>, [src]
C: Into<Coordinate<T>>,
Constructor to creates a new rectangle from coordinates, where min denotes to the
coordinates of the bottom-right corner, and max denotes to the coordinates of the
top-left corner
Panics
Panics if min's x/y coordinate is larger than that of the max's.
Examples
use geo_types::{Coordinate, Rect}; let rect = Rect::new( Coordinate { x: 0., y: 0. }, Coordinate { x: 10., y: 20. }, ); assert_eq!(rect.min, Coordinate { x: 0., y: 0. }); assert_eq!(rect.max, Coordinate { x: 10., y: 20. });
pub fn width(self) -> T[src]
pub fn height(self) -> T[src]
Trait Implementations
impl<T> From<Rect<T>> for Polygon<T> where
T: CoordinateType, [src]
T: CoordinateType,
impl<T> PartialEq<Rect<T>> for Rect<T> where
T: PartialEq<T> + CoordinateType, [src]
T: PartialEq<T> + CoordinateType,
impl<T> Debug for Rect<T> where
T: Debug + CoordinateType, [src]
T: Debug + CoordinateType,
impl<T> Clone for Rect<T> where
T: Clone + CoordinateType, [src]
T: Clone + CoordinateType,
fn clone(&self) -> Rect<T>[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl<T> Copy for Rect<T> where
T: Copy + CoordinateType, [src]
T: Copy + CoordinateType,
impl<T> Area<T> for Rect<T> where
T: CoordinateType, [src]
T: CoordinateType,
impl<T> Centroid<T> for Rect<T> where
T: Float, [src]
T: Float,
impl<T> Contains<Point<T>> for Rect<T> where
T: CoordinateType, [src]
T: CoordinateType,
impl<T> Contains<Rect<T>> for Rect<T> where
T: CoordinateType, [src]
T: CoordinateType,
impl<T> Intersects<Rect<T>> for Rect<T> where
T: Float, [src]
T: Float,
fn intersects(&self, bounding_rect: &Rect<T>) -> bool[src]
impl<T> Intersects<Polygon<T>> for Rect<T> where
T: Float, [src]
T: Float,
fn intersects(&self, polygon: &Polygon<T>) -> bool[src]
impl<T> Intersects<Rect<T>> for Polygon<T> where
T: Float, [src]
T: Float,
fn intersects(&self, bounding_rect: &Rect<T>) -> bool[src]
impl<T: CoordinateType, NT: CoordinateType> MapCoords<T, NT> for Rect<T>[src]
impl<T: CoordinateType, NT: CoordinateType> TryMapCoords<T, NT> for Rect<T>[src]
type Output = Rect<NT>
fn try_map_coords(
&self,
func: &dyn Fn(&(T, T)) -> Result<(NT, NT), Error>
) -> Result<Self::Output, Error>[src]
&self,
func: &dyn Fn(&(T, T)) -> Result<(NT, NT), Error>
) -> Result<Self::Output, Error>
impl<T: CoordinateType> MapCoordsInplace<T> for Rect<T>[src]
Auto Trait Implementations
Blanket Implementations
impl<T, G> RotatePoint<T> for G where
G: MapCoords<T, T, Output = G>,
T: Float, [src]
G: MapCoords<T, T, Output = G>,
T: Float,
fn rotate_around_point(&Self, T, Point<T>) -> G[src]
impl<T, G> Translate<T> for G where
G: MapCoords<T, T, Output = G> + MapCoordsInplace<T>,
T: CoordinateType, [src]
G: MapCoords<T, T, Output = G> + MapCoordsInplace<T>,
T: CoordinateType,
impl<T> From<T> for T[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,