[][src]Struct geo_types::line_string::LineString

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

An ordered collection of two or more Coordinates, representing a path between locations.

Examples

Create a LineString by calling it directly:

use geo_types::{LineString, Coordinate};

let line_string = LineString(vec![
    Coordinate { x: 0., y: 0. },
    Coordinate { x: 10., y: 0. },
]);

Converting a Vec of Coordinate-like things:

use geo_types::LineString;

let line_string: LineString<f32> = vec![
    (0., 0.),
    (10., 0.),
].into();
use geo_types::LineString;

let line_string: LineString<f64> = vec![
    [0., 0.],
    [10., 0.],
].into();

Or collecting from a Coordinate iterator

use geo_types::{LineString, Coordinate};

let mut coords_iter = vec![
    Coordinate { x: 0., y: 0. },
    Coordinate { x: 10., y: 0. }
].into_iter();

let line_string: LineString<f32> = coords_iter.collect();

You can iterate over the coordinates in the LineString:

use geo_types::{LineString, Coordinate};

let line_string = LineString(vec![
    Coordinate { x: 0., y: 0. },
    Coordinate { x: 10., y: 0. },
]);

for coord in line_string {
    println!("Coordinate x = {}, y = {}", coord.x, coord.y);
}

Methods

impl<T: CoordinateType> LineString<T>[src]

Important traits for PointsIter<'a, T>
pub fn points_iter(&self) -> PointsIter<T>[src]

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

pub fn lines<'a>(
    &'a self
) -> impl ExactSizeIterator + Iterator<Item = Line<T>> + 'a
[src]

Return an Line iterator that yields one Line for each line segment in the LineString.

Examples

use geo_types::{Line, LineString, Coordinate};

let mut coords = vec![(0., 0.), (5., 0.), (7., 9.)];
let line_string: LineString<f32> = coords.into_iter().collect();

let mut lines = line_string.lines();
assert_eq!(
    Some(Line::new(Coordinate { x: 0., y: 0. }, Coordinate { x: 5., y: 0. })),
    lines.next()
);
assert_eq!(
    Some(Line::new(Coordinate { x: 5., y: 0. }, Coordinate { x: 7., y: 9. })),
    lines.next()
);
assert!(lines.next().is_none());

pub fn triangles<'a>(
    &'a self
) -> impl ExactSizeIterator + Iterator<Item = Triangle<T>> + 'a
[src]

Trait Implementations

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

impl<T: CoordinateType> IntoIterator for LineString<T>[src]

Iterate over all the Coordinates in this LineString.

type Item = Coordinate<T>

The type of the elements being iterated over.

type IntoIter = IntoIter<Coordinate<T>>

Which kind of iterator are we turning this into?

impl<T: Clone> Clone for LineString<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, IC: Into<Coordinate<T>>> From<Vec<IC>> for LineString<T>[src]

Turn a Vec of Point-ish objects into a LineString.

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

impl<T: CoordinateType> Index<usize> for LineString<T>[src]

type Output = Coordinate<T>

The returned type after indexing.

impl<T: CoordinateType> IndexMut<usize> for LineString<T>[src]

impl<T: CoordinateType, IC: Into<Coordinate<T>>> FromIterator<IC> for LineString<T>[src]

Turn a Point-ish iterator into a LineString.

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

Auto Trait Implementations

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

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

Blanket Implementations

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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.