Struct geo_types::geometry::Coord

source ·
pub struct Coord<T: CoordNum = f64> {
    pub x: T,
    pub y: T,
}
Expand description

A lightweight struct used to store coordinates on the 2-dimensional Cartesian plane.

Unlike Point (which in the future may contain additional information such as an envelope, a precision model, and spatial reference system information), a Coord only contains ordinate values and accessor methods.

This type implements the vector space operations: Add, Sub, Neg, Zero, Mul<T>, and Div<T> traits.

§Semantics

This type does not represent any geospatial primitive, but is used in their definitions. The only requirement is that the coordinates it contains are valid numbers (for eg. not f64::NAN).

Fields§

§x: T§y: T

Implementations§

source§

impl<T: CoordNum> Coord<T>

source

pub fn x_y(&self) -> (T, T)

Returns a tuple that contains the x/horizontal & y/vertical component of the coordinate.

§Examples
use geo_types::coord;

let c = coord! {
    x: 40.02f64,
    y: 116.34,
};
let (x, y) = c.x_y();

assert_eq!(y, 116.34);
assert_eq!(x, 40.02f64);
source§

impl<T: CoordNum> Coord<T>

Create a coordinate at the origin.

§Examples

use geo_types::Coord;
use num_traits::Zero;

let p: Coord = Zero::zero();

assert_eq!(p.x, 0.);
assert_eq!(p.y, 0.);
source

pub fn zero() -> Self

Trait Implementations§

source§

impl<T: CoordNum> Add for Coord<T>

Add two coordinates.

§Examples

use geo_types::coord;

let p = coord! { x: 1.25, y: 2.5 };
let q = coord! { x: 1.5, y: 2.5 };
let sum = p + q;

assert_eq!(sum.x, 2.75);
assert_eq!(sum.y, 5.0);
§

type Output = Coord<T>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
source§

impl<T: Clone + CoordNum> Clone for Coord<T>

source§

fn clone(&self) -> Coord<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 + CoordNum> Debug for Coord<T>

source§

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

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

impl<T: Default + CoordNum> Default for Coord<T>

source§

fn default() -> Coord<T>

Returns the “default value” for a type. Read more
source§

impl<T: CoordNum> Div<T> for Coord<T>

Divide coordinate wise by a scalar.

§Examples

use geo_types::coord;

let p = coord! { x: 5., y: 10. };
let q = p / 4.;

assert_eq!(q.x, 1.25);
assert_eq!(q.y, 2.5);
§

type Output = Coord<T>

The resulting type after applying the / operator.
source§

fn div(self, rhs: T) -> Self

Performs the / operation. Read more
source§

impl<T: CoordNum> From<[T; 2]> for Coord<T>

source§

fn from(coords: [T; 2]) -> Self

Converts to this type from the input type.
source§

impl<T: CoordNum> From<(T, T)> for Coord<T>

source§

fn from(coords: (T, T)) -> Self

Converts to this type from the input type.
source§

impl<T: CoordNum> From<Coord<T>> for [T; 2]

source§

fn from(coord: Coord<T>) -> Self

Converts to this type from the input type.
source§

impl<T: CoordNum> From<Coord<T>> for (T, T)

source§

fn from(coord: Coord<T>) -> Self

Converts to this type from the input type.
source§

impl<T: CoordNum> From<Coord<T>> for Point<T>

source§

fn from(x: Coord<T>) -> Self

Converts to this type from the input type.
source§

impl<T: CoordNum> From<Point<T>> for Coord<T>

source§

fn from(point: Point<T>) -> Self

Converts to this type from the input type.
source§

impl<T: Hash + CoordNum> Hash for Coord<T>

source§

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

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: CoordNum> Mul<T> for Coord<T>

Multiply coordinate wise by a scalar.

§Examples

use geo_types::coord;

let p = coord! { x: 1.25, y: 2.5 };
let q = p * 4.;

assert_eq!(q.x, 5.0);
assert_eq!(q.y, 10.0);
§

type Output = Coord<T>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: T) -> Self

Performs the * operation. Read more
source§

impl<T> Neg for Coord<T>
where T: CoordNum + Neg<Output = T>,

Negate a coordinate.

§Examples

use geo_types::coord;

let p = coord! { x: 1.25, y: 2.5 };
let q = -p;

assert_eq!(q.x, -p.x);
assert_eq!(q.y, -p.y);
§

type Output = Coord<T>

The resulting type after applying the - operator.
source§

fn neg(self) -> Self

Performs the unary - operation. Read more
source§

impl<T: PartialEq + CoordNum> PartialEq for Coord<T>

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T: CoordNum> Sub for Coord<T>

Subtract a coordinate from another.

§Examples

use geo_types::coord;

let p = coord! { x: 1.5, y: 2.5 };
let q = coord! { x: 1.25, y: 2.5 };
let diff = p - q;

assert_eq!(diff.x, 0.25);
assert_eq!(diff.y, 0.);
§

type Output = Coord<T>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
source§

impl<T: CoordNum> Zero for Coord<T>

source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl<T: Copy + CoordNum> Copy for Coord<T>

source§

impl<T: Eq + CoordNum> Eq for Coord<T>

source§

impl<T: CoordNum> StructuralPartialEq for Coord<T>

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

impl<T> UnwindSafe for Coord<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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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> ToOwned for T
where 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 T
where 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 T
where 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.