Struct geo_types::LineString [−][src]
pub struct LineString<T>(pub Vec<Point<T>>)
where
T: CoordinateType;
An ordered collection of two or more Points, representing a path between locations
Create a LineString by calling it directly:
use geo_types::{LineString, Point}; let line = LineString(vec![Point::new(0., 0.), Point::new(10., 0.)]);
Converting a Vec of Point-like things:
let line: LineString<f32> = vec![(0., 0.), (10., 0.)].into();
let line: LineString<f64> = vec![[0., 0.], [10., 0.]].into();
Or collecting from a Point iterator
let mut points = vec![Point::new(0., 0.), Point::new(10., 0.)]; let line: LineString<f32> = points.into_iter().collect();
You can iterate over the points in the LineString
use geo_types::{LineString, Point}; let line = LineString(vec![Point::new(0., 0.), Point::new(10., 0.)]); for point in line { println!("Point x = {}, y = {}", point.x(), point.y()); }
Methods
impl<T: CoordinateType> LineString<T>[src]
impl<T: CoordinateType> LineString<T>pub fn lines<'a>(
&'a self
) -> impl Iterator<Item = Line<T>> + 'a[src]
pub fn lines<'a>(
&'a self
) -> impl Iterator<Item = Line<T>> + 'aReturn an Line iterator that yields one Line for each line segment
in the LineString.
Examples
use geo_types::{Line, LineString, Point}; let mut points = vec![(0., 0.), (5., 0.), (7., 9.)]; let linestring: LineString<f32> = points.into_iter().collect(); let mut lines = linestring.lines(); assert_eq!( Some(Line::new(Point::new(0., 0.), Point::new(5., 0.))), lines.next() ); assert_eq!( Some(Line::new(Point::new(5., 0.), Point::new(7., 9.))), lines.next() ); assert!(lines.next().is_none());
pub fn points(&self) -> Iter<Point<T>>[src]
pub fn points(&self) -> Iter<Point<T>>pub fn points_mut(&mut self) -> IterMut<Point<T>>[src]
pub fn points_mut(&mut self) -> IterMut<Point<T>>Trait Implementations
impl<T: PartialEq> PartialEq for LineString<T> where
T: CoordinateType, [src]
impl<T: PartialEq> PartialEq for LineString<T> where
T: CoordinateType, fn eq(&self, other: &LineString<T>) -> bool[src]
fn eq(&self, other: &LineString<T>) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &LineString<T>) -> bool[src]
fn ne(&self, other: &LineString<T>) -> boolThis method tests for !=.
impl<T: Clone> Clone for LineString<T> where
T: CoordinateType, [src]
impl<T: Clone> Clone for LineString<T> where
T: CoordinateType, fn clone(&self) -> LineString<T>[src]
fn clone(&self) -> LineString<T>Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl<T: Debug> Debug for LineString<T> where
T: CoordinateType, [src]
impl<T: Debug> Debug for LineString<T> where
T: CoordinateType, fn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl<T: CoordinateType, IP: Into<Point<T>>> From<Vec<IP>> for LineString<T>[src]
impl<T: CoordinateType, IP: Into<Point<T>>> From<Vec<IP>> for LineString<T>Turn a Vec of Point-ish objects into a LineString.
impl<T: CoordinateType, IP: Into<Point<T>>> FromIterator<IP> for LineString<T>[src]
impl<T: CoordinateType, IP: Into<Point<T>>> FromIterator<IP> for LineString<T>Turn a Point-ish iterator into a LineString.
fn from_iter<I: IntoIterator<Item = IP>>(iter: I) -> Self[src]
fn from_iter<I: IntoIterator<Item = IP>>(iter: I) -> SelfCreates a value from an iterator. Read more
impl<T: CoordinateType> IntoIterator for LineString<T>[src]
impl<T: CoordinateType> IntoIterator for LineString<T>Iterate over all the Points in this linestring
type Item = Point<T>
The type of the elements being iterated over.
type IntoIter = IntoIter<Point<T>>
Which kind of iterator are we turning this into?
fn into_iter(self) -> Self::IntoIter[src]
fn into_iter(self) -> Self::IntoIterCreates an iterator from a value. Read more
impl<T: CoordinateType> From<LineString<T>> for Geometry<T>[src]
impl<T: CoordinateType> From<LineString<T>> for Geometry<T>fn from(x: LineString<T>) -> Geometry<T>[src]
fn from(x: LineString<T>) -> Geometry<T>Performs the conversion.
Auto Trait Implementations
impl<T> Send for LineString<T> where
T: Send,
impl<T> Send for LineString<T> where
T: Send, impl<T> Sync for LineString<T> where
T: Sync,
impl<T> Sync for LineString<T> where
T: Sync,