[][src]Struct geo_types::Point

pub struct Point<T>(pub Coordinate<T>)
where
    T: CoordinateType
;

A single point in 2D space.

Points can be created using the new(x, y) constructor, or from a Coordinate or pair of points.

Examples

use geo_types::{Point, Coordinate};
let p1: Point<f64> = (0., 1.).into();
let c = Coordinate{ x: 10., y: 20.};
let p2: Point<f64> = c.into();

Methods

impl<T> Point<T> where
    T: CoordinateType
[src]

pub fn new(x: T, y: T) -> Point<T>[src]

Creates a new point.

Examples

use geo_types::Point;

let p = Point::new(1.234, 2.345);

assert_eq!(p.x(), 1.234);
assert_eq!(p.y(), 2.345);

pub fn x(self) -> T[src]

Returns the x/horizontal component of the point.

Examples

use geo_types::Point;

let p = Point::new(1.234, 2.345);

assert_eq!(p.x(), 1.234);

pub fn set_x(&mut self, x: T) -> &mut Point<T>[src]

Sets the x/horizontal component of the point.

Examples

use geo_types::Point;

let mut p = Point::new(1.234, 2.345);
p.set_x(9.876);

assert_eq!(p.x(), 9.876);

pub fn y(self) -> T[src]

Returns the y/vertical component of the point.

Examples

use geo_types::Point;

let p = Point::new(1.234, 2.345);

assert_eq!(p.y(), 2.345);

pub fn set_y(&mut self, y: T) -> &mut Point<T>[src]

Sets the y/vertical component of the point.

Examples

use geo_types::Point;

let mut p = Point::new(1.234, 2.345);
p.set_y(9.876);

assert_eq!(p.y(), 9.876);

pub fn x_y(self) -> (T, T)[src]

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

Examples

use geo_types::Point;

let mut p = Point::new(1.234, 2.345);
let (x, y) = p.x_y();

assert_eq!(y, 2.345);
assert_eq!(x, 1.234);

pub fn lng(self) -> T[src]

Returns the longitude/horizontal component of the point.

Examples

use geo_types::Point;

let p = Point::new(1.234, 2.345);

assert_eq!(p.lng(), 1.234);

pub fn set_lng(&mut self, lng: T) -> &mut Point<T>[src]

Sets the longitude/horizontal component of the point.

Examples

use geo_types::Point;

let mut p = Point::new(1.234, 2.345);
p.set_lng(9.876);

assert_eq!(p.lng(), 9.876);

pub fn lat(self) -> T[src]

Returns the latitude/vertical component of the point.

Examples

use geo_types::Point;

let p = Point::new(1.234, 2.345);

assert_eq!(p.lat(), 2.345);

pub fn set_lat(&mut self, lat: T) -> &mut Point<T>[src]

Sets the latitude/vertical component of the point.

Examples

use geo_types::Point;

let mut p = Point::new(1.234, 2.345);
p.set_lat(9.876);

assert_eq!(p.lat(), 9.876);

impl<T> Point<T> where
    T: CoordinateType
[src]

pub fn dot(self, other: Point<T>) -> T[src]

Returns the dot product of the two points: dot = x1 * x2 + y1 * y2

Examples

use geo_types::{Coordinate, Point};

let point = Point(Coordinate { x: 1.5, y: 0.5 });
let dot = point.dot(Point(Coordinate { x: 2.0, y: 4.5 }));

assert_eq!(dot, 5.25);

pub fn cross_prod(self, point_b: Point<T>, point_c: Point<T>) -> T[src]

Returns the cross product of 3 points. A positive value implies selfpoint_bpoint_c is counter-clockwise, negative implies clockwise.

Examples

use geo_types::{Coordinate, Point};

let point_a = Point(Coordinate { x: 1., y: 2. });
let point_b = Point(Coordinate { x: 3., y: 5. });
let point_c = Point(Coordinate { x: 7., y: 12. });

let cross = point_a.cross_prod(point_b, point_c);

assert_eq!(cross, 2.0)

impl<T> Point<T> where
    T: CoordinateType + Float
[src]

pub fn to_degrees(self) -> Point<T>[src]

Converts the (x,y) components of Point to degrees

Example

use geo_types::Point;

let p = Point::new(1.234, 2.345);
let (x,y): (f32, f32) = p.to_degrees().x_y();
assert_eq!(x.round(), 71.0);
assert_eq!(y.round(), 134.0);

pub fn to_radians(self) -> Point<T>[src]

Converts the (x,y) components of Point to radians

Example

use geo_types::Point;

let p = Point::new(180.0, 341.5);
let (x,y): (f32, f32) = p.to_radians().x_y();
assert_eq!(x.round(), 3.0);
assert_eq!(y.round(), 6.0);

Trait Implementations

impl<T: PartialEq> PartialEq<Point<T>> for Point<T> where
    T: CoordinateType
[src]

impl<T: Clone> Clone for Point<T> where
    T: CoordinateType
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: CoordinateType> From<Point<T>> for Coordinate<T>[src]

impl<T: CoordinateType> From<Coordinate<T>> for Point<T>[src]

impl<T: CoordinateType> From<(T, T)> for Point<T>[src]

impl<T: CoordinateType> From<[T; 2]> for Point<T>[src]

impl<T: CoordinateType> From<Point<T>> for Geometry<T>[src]

impl<T: Copy> Copy for Point<T> where
    T: CoordinateType
[src]

impl<T> Add<Point<T>> for Point<T> where
    T: CoordinateType
[src]

type Output = Point<T>

The resulting type after applying the + operator.

fn add(self, rhs: Point<T>) -> Point<T>[src]

Add a point to the given point.

Examples

use geo_types::Point;

let p = Point::new(1.25, 2.5) + Point::new(1.5, 2.5);

assert_eq!(p.x(), 2.75);
assert_eq!(p.y(), 5.0);

impl<T> Sub<Point<T>> for Point<T> where
    T: CoordinateType
[src]

type Output = Point<T>

The resulting type after applying the - operator.

fn sub(self, rhs: Point<T>) -> Point<T>[src]

Subtract a point from the given point.

Examples

use geo_types::Point;

let p = Point::new(1.25, 3.0) - Point::new(1.5, 2.5);

assert_eq!(p.x(), -0.25);
assert_eq!(p.y(), 0.5);

impl<T> Neg for Point<T> where
    T: CoordinateType + Neg<Output = T>, 
[src]

type Output = Point<T>

The resulting type after applying the - operator.

fn neg(self) -> Point<T>[src]

Returns a point with the x and y components negated.

Examples

use geo_types::Point;

let p = -Point::new(-1.25, 2.5);

assert_eq!(p.x(), 1.25);
assert_eq!(p.y(), -2.5);

impl<T: Debug> Debug for Point<T> where
    T: CoordinateType
[src]

Auto Trait Implementations

impl<T> Send for Point<T> where
    T: Send

impl<T> Sync for Point<T> where
    T: Sync

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.