Rect

Struct Rect 

Source
pub struct Rect<T = f64>
where T: CoordNum,
{ /* private fields */ }
Available on crate feature geo-types only.
Expand description

An axis-aligned bounded 2D rectangle whose area is defined by minimum and maximum Coords.

The constructors and setters ensure the maximum Coord is greater than or equal to the minimum. Thus, a Rects width, height, and area is guaranteed to be greater than or equal to zero.

Note. While Rect implements MapCoords and RotatePoint algorithmic traits, the usage is expected to maintain the axis alignment. In particular, only rotation by integer multiples of 90 degrees, will preserve the original shape. In other cases, the min, and max points are rotated or transformed, and a new rectangle is created (with coordinate swaps to ensure min < max).

§Examples

use geo_types::{coord, Rect};

let rect = Rect::new(
    coord! { x: 0., y: 4.},
    coord! { x: 3., y: 10.},
);

assert_eq!(3., rect.width());
assert_eq!(6., rect.height());
assert_eq!(
    coord! { x: 1.5, y: 7. },
    rect.center()
);

Implementations§

Source§

impl<T> Rect<T>
where T: CoordNum,

Source

pub fn new<C>(c1: C, c2: C) -> Rect<T>
where C: Into<Coord<T>>,

Creates a new rectangle from two corner coordinates.

Coords are stored and returned (by iterators) in CCW order

§Examples
use geo_types::{coord, Rect};

let rect = Rect::new(
    coord! { x: 10., y: 20. },
    coord! { x: 30., y: 10. }
);
assert_eq!(rect.min(), coord! { x: 10., y: 10. });
assert_eq!(rect.max(), coord! { x: 30., y: 20. });
Source

pub fn try_new<C>(c1: C, c2: C) -> Result<Rect<T>, InvalidRectCoordinatesError>
where C: Into<Coord<T>>,

👎Deprecated since 0.6.2: Use Rect::new instead, since Rect::try_new will never Error
Source

pub fn min(self) -> Coord<T>

Returns the minimum Coord of the Rect.

§Examples
use geo_types::{coord, Rect};

let rect = Rect::new(
    coord! { x: 5., y: 5. },
    coord! { x: 15., y: 15. },
);

assert_eq!(rect.min(), coord! { x: 5., y: 5. });
Source

pub fn set_min<C>(&mut self, min: C)
where C: Into<Coord<T>>,

Set the Rect’s minimum coordinate.

§Panics

Panics if min’s x/y is greater than the maximum coordinate’s x/y.

Source

pub fn max(self) -> Coord<T>

Returns the maximum Coord of the Rect.

§Examples
use geo_types::{coord, Rect};

let rect = Rect::new(
    coord! { x: 5., y: 5. },
    coord! { x: 15., y: 15. },
);

assert_eq!(rect.max(), coord! { x: 15., y: 15. });
Source

pub fn set_max<C>(&mut self, max: C)
where C: Into<Coord<T>>,

Set the Rect’s maximum coordinate.

§Panics

Panics if max’s x/y is less than the minimum coordinate’s x/y.

Source

pub fn width(self) -> T

Returns the width of the Rect.

§Examples
use geo_types::{coord, Rect};

let rect = Rect::new(
    coord! { x: 5., y: 5. },
    coord! { x: 15., y: 15. },
);

assert_eq!(rect.width(), 10.);
Source

pub fn height(self) -> T

Returns the height of the Rect.

§Examples
use geo_types::{coord, Rect};

let rect = Rect::new(
    coord! { x: 5., y: 5. },
    coord! { x: 15., y: 15. },
);

assert_eq!(rect.height(), 10.);
Source

pub fn to_polygon(self) -> Polygon<T>

Create a Polygon from the Rect.

§Examples
use geo_types::{coord, Rect, polygon};

let rect = Rect::new(
    coord! { x: 0., y: 0. },
    coord! { x: 1., y: 2. },
);

// Output is CCW
assert_eq!(
    rect.to_polygon(),
    polygon![
        (x: 1., y: 0.),
        (x: 1., y: 2.),
        (x: 0., y: 2.),
        (x: 0., y: 0.),
        (x: 1., y: 0.),
    ],
);
Source

pub fn to_lines(&self) -> [Line<T>; 4]

Source

pub fn split_x(self) -> [Rect<T>; 2]

Split a rectangle into two rectangles along the X-axis with equal widths.

§Examples
let rect = geo_types::Rect::new(
    geo_types::coord! { x: 0., y: 0. },
    geo_types::coord! { x: 4., y: 4. },
);

let [rect1, rect2] = rect.split_x();

assert_eq!(
    geo_types::Rect::new(
        geo_types::coord! { x: 0., y: 0. },
        geo_types::coord! { x: 2., y: 4. },
    ),
    rect1,
);
assert_eq!(
    geo_types::Rect::new(
        geo_types::coord! { x: 2., y: 0. },
        geo_types::coord! { x: 4., y: 4. },
    ),
    rect2,
);
Source

pub fn split_y(self) -> [Rect<T>; 2]

Split a rectangle into two rectangles along the Y-axis with equal heights.

§Examples
let rect = geo_types::Rect::new(
    geo_types::coord! { x: 0., y: 0. },
    geo_types::coord! { x: 4., y: 4. },
);

let [rect1, rect2] = rect.split_y();

assert_eq!(
    geo_types::Rect::new(
        geo_types::coord! { x: 0., y: 0. },
        geo_types::coord! { x: 4., y: 2. },
    ),
    rect1,
);
assert_eq!(
    geo_types::Rect::new(
        geo_types::coord! { x: 0., y: 2. },
        geo_types::coord! { x: 4., y: 4. },
    ),
    rect2,
);
Source§

impl<T> Rect<T>
where T: CoordFloat,

Source

pub fn center(self) -> Coord<T>

Returns the center Coord of the Rect.

§Examples
use geo_types::{coord, Rect};

let rect = Rect::new(
    coord! { x: 5., y: 5. },
    coord! { x: 15., y: 15. },
);

assert_eq!(rect.center(), coord! { x: 10., y: 10. });

Trait Implementations§

Source§

impl<T> Clone for Rect<T>
where T: Clone + CoordNum,

Source§

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

Returns a duplicate 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 for Rect<T>
where T: CoordNum,

Source§

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

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

impl<T> From<Rect<T>> for Geometry<T>
where T: CoordNum,

Source§

fn from(x: Rect<T>) -> Geometry<T>

Converts to this type from the input type.
Source§

impl<T> From<Rect<T>> for Polygon<T>
where T: CoordNum,

Source§

fn from(r: Rect<T>) -> Polygon<T>

Converts to this type from the input type.
Source§

impl<'a, T> GeometryTrait for &'a Rect<T>
where T: CoordNum + 'a,

Source§

type T = T

The coordinate type of this geometry
Source§

type PointType<'b> = Point<<&'a Rect<T> as GeometryTrait>::T> where &'a Rect<T>: 'b

The type of each underlying Point, which implements PointTrait
Source§

type LineStringType<'b> = LineString<<&'a Rect<T> as GeometryTrait>::T> where &'a Rect<T>: 'b

The type of each underlying LineString, which implements LineStringTrait
Source§

type PolygonType<'b> = Polygon<<&'a Rect<T> as GeometryTrait>::T> where &'a Rect<T>: 'b

The type of each underlying Polygon, which implements PolygonTrait
Source§

type MultiPointType<'b> = MultiPoint<<&'a Rect<T> as GeometryTrait>::T> where &'a Rect<T>: 'b

The type of each underlying MultiPoint, which implements MultiPointTrait
Source§

type MultiLineStringType<'b> = MultiLineString<<&'a Rect<T> as GeometryTrait>::T> where &'a Rect<T>: 'b

The type of each underlying MultiLineString, which implements MultiLineStringTrait
Source§

type MultiPolygonType<'b> = MultiPolygon<<&'a Rect<T> as GeometryTrait>::T> where &'a Rect<T>: 'b

The type of each underlying MultiPolygon, which implements MultiPolygonTrait
Source§

type GeometryCollectionType<'b> = GeometryCollection<<&'a Rect<T> as GeometryTrait>::T> where &'a Rect<T>: 'b

The type of each underlying GeometryCollection, which implements GeometryCollectionTrait
Source§

type RectType<'b> = Rect<<&'a Rect<T> as GeometryTrait>::T> where &'a Rect<T>: 'b

The type of each underlying Rect, which implements RectTrait
Source§

type TriangleType<'b> = Triangle<<&'a Rect<T> as GeometryTrait>::T> where &'a Rect<T>: 'b

The type of each underlying Triangle, which implements TriangleTrait
Source§

type LineType<'b> = Line<<&'a Rect<T> as GeometryTrait>::T> where &'a Rect<T>: 'b

The type of each underlying Line, which implements LineTrait
Source§

fn dim(&self) -> Dimensions

The dimension of this geometry
Source§

fn as_type( &self, ) -> GeometryType<'_, Point<T>, LineString<T>, Polygon<T>, MultiPoint<T>, MultiLineString<T>, MultiPolygon<T>, GeometryCollection<T>, Rect<T>, Triangle<T>, Line<T>>

Cast this geometry to a GeometryType enum, which allows for downcasting to a specific type
Source§

impl<T> GeometryTrait for Rect<T>
where T: CoordNum,

Source§

type T = T

The coordinate type of this geometry
Source§

type PointType<'b> = Point<<Rect<T> as GeometryTrait>::T> where Rect<T>: 'b

The type of each underlying Point, which implements PointTrait
Source§

type LineStringType<'b> = LineString<<Rect<T> as GeometryTrait>::T> where Rect<T>: 'b

The type of each underlying LineString, which implements LineStringTrait
Source§

type PolygonType<'b> = Polygon<<Rect<T> as GeometryTrait>::T> where Rect<T>: 'b

The type of each underlying Polygon, which implements PolygonTrait
Source§

type MultiPointType<'b> = MultiPoint<<Rect<T> as GeometryTrait>::T> where Rect<T>: 'b

The type of each underlying MultiPoint, which implements MultiPointTrait
Source§

type MultiLineStringType<'b> = MultiLineString<<Rect<T> as GeometryTrait>::T> where Rect<T>: 'b

The type of each underlying MultiLineString, which implements MultiLineStringTrait
Source§

type MultiPolygonType<'b> = MultiPolygon<<Rect<T> as GeometryTrait>::T> where Rect<T>: 'b

The type of each underlying MultiPolygon, which implements MultiPolygonTrait
Source§

type GeometryCollectionType<'b> = GeometryCollection<<Rect<T> as GeometryTrait>::T> where Rect<T>: 'b

The type of each underlying GeometryCollection, which implements GeometryCollectionTrait
Source§

type RectType<'b> = Rect<<Rect<T> as GeometryTrait>::T> where Rect<T>: 'b

The type of each underlying Rect, which implements RectTrait
Source§

type TriangleType<'b> = Triangle<<Rect<T> as GeometryTrait>::T> where Rect<T>: 'b

The type of each underlying Triangle, which implements TriangleTrait
Source§

type LineType<'b> = Line<<Rect<T> as GeometryTrait>::T> where Rect<T>: 'b

The type of each underlying Line, which implements LineTrait
Source§

fn dim(&self) -> Dimensions

The dimension of this geometry
Source§

fn as_type( &self, ) -> GeometryType<'_, Point<T>, LineString<T>, Polygon<T>, MultiPoint<T>, MultiLineString<T>, MultiPolygon<T>, GeometryCollection<T>, Rect<T>, Triangle<T>, Line<T>>

Cast this geometry to a GeometryType enum, which allows for downcasting to a specific type
Source§

impl<T> Hash for Rect<T>
where T: Hash + CoordNum,

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<T> PartialEq for Rect<T>
where T: PartialEq + CoordNum,

Source§

fn eq(&self, other: &Rect<T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<'a, T> RectTrait for &'a Rect<T>
where T: CoordNum + 'a,

Source§

type CoordType<'b> = Coord<T> where &'a Rect<T>: 'b

The type of each underlying coordinate, which implements CoordTrait
Source§

fn min(&self) -> <&'a Rect<T> as RectTrait>::CoordType<'_>

The minimum coordinate of this Rect
Source§

fn max(&self) -> <&'a Rect<T> as RectTrait>::CoordType<'_>

The maximum coordinate of this Rect
Source§

impl<T> RectTrait for Rect<T>
where T: CoordNum,

Source§

type CoordType<'b> = Coord<T> where Rect<T>: 'b

The type of each underlying coordinate, which implements CoordTrait
Source§

fn min(&self) -> <Rect<T> as RectTrait>::CoordType<'_>

The minimum coordinate of this Rect
Source§

fn max(&self) -> <Rect<T> as RectTrait>::CoordType<'_>

The maximum coordinate of this Rect
Source§

impl<T> ToWkt<T> for Rect<T>
where T: CoordNum + Display,

§Examples

use geo_types::{coord, Rect};
use wkt::ToWkt;

let rect: Rect<f64> = Rect::new(coord!(x: 4., y: 4.), coord!(x: 8., y: 8.));

assert_eq!(rect.wkt_string(), "POLYGON((8 4,8 8,4 8,4 4,8 4))");
Source§

fn to_wkt(&self) -> Wkt<T>

Converts the value of self to an Wkt struct. Read more
Source§

fn write_wkt(&self, writer: impl Write) -> Result<(), Error>

Write a WKT string to a File, or anything else that implements Write. Read more
Source§

fn wkt_string(&self) -> String

Serialize as a WKT string Read more
Source§

impl<T> TryFrom<Geometry<T>> for Rect<T>
where T: CoordNum,

Convert a Geometry enum into its inner type.

Fails if the enum case does not match the type you are trying to convert it to.

Source§

type Error = Error

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

fn try_from( geom: Geometry<T>, ) -> Result<Rect<T>, <Rect<T> as TryFrom<Geometry<T>>>::Error>

Performs the conversion.
Source§

impl<T> TryFrom<Wkt<T>> for Rect<T>
where T: CoordNum,

Fallibly convert this WKT primitive into this geo_types primitive

Source§

type Error = Error

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

fn try_from(wkt: Wkt<T>) -> Result<Rect<T>, <Rect<T> as TryFrom<Wkt<T>>>::Error>

Performs the conversion.
Source§

impl<T> TryFromWkt<T> for Rect<T>
where T: CoordNum + FromStr + Default,

Source§

type Error = Error

Source§

fn try_from_wkt_str( wkt_str: &str, ) -> Result<Rect<T>, <Rect<T> as TryFromWkt<T>>::Error>

Examples Read more
Source§

fn try_from_wkt_reader( wkt_reader: impl Read, ) -> Result<Rect<T>, <Rect<T> as TryFromWkt<T>>::Error>

Examples Read more
Source§

impl<T> Copy for Rect<T>
where T: Copy + CoordNum,

Source§

impl<T> Eq for Rect<T>
where T: Eq + CoordNum,

Source§

impl<T> StructuralPartialEq for Rect<T>
where T: CoordNum,

Auto Trait Implementations§

§

impl<T> Freeze for Rect<T>
where T: Freeze,

§

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

§

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

§

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

§

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

§

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

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where 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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, G> ToGeoGeometry<T> for G
where T: CoordNum, G: GeometryTrait<T = T>,

Source§

fn try_to_geometry(&self) -> Option<Geometry<T>>

Convert to a geo_types Geometry. Read more
Source§

fn to_geometry(&self) -> Geometry<T>

Convert to a geo_types Geometry. Read more
Source§

impl<T, G> ToGeoRect<T> for G
where T: CoordNum, G: RectTrait<T = T>,

Source§

fn to_rect(&self) -> Rect<T>

Convert to a geo_types Rect.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

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 T
where U: Into<T>,

Source§

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 T
where U: TryFrom<T>,

Source§

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<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more