Struct libreda_db::layout::prelude::PointString
source · [−]Expand description
A point string is a finite sequence of points.
TODO: Implement Deref
for accessing the list of points.
Fields
points: Vec<Point<T>, Global>
The points defining this point string.
Implementations
sourceimpl<T> PointString<T>
impl<T> PointString<T>
sourceimpl<T> PointString<T> where
T: Copy,
impl<T> PointString<T> where
T: Copy,
sourcepub fn new<I>(i: I) -> PointString<T> where
I: Into<PointString<T>>,
pub fn new<I>(i: I) -> PointString<T> where
I: Into<PointString<T>>,
Create new point string by taking vertices from a type that implements Into<PointString<T>>
.
sourcepub fn edges(&self) -> impl Iterator<Item = Edge<T>>
pub fn edges(&self) -> impl Iterator<Item = Edge<T>>
Get the sequence of edges of the point string starting from the first point to the last.
Examples
use iron_shapes::point_string::PointString;
use iron_shapes::edge::Edge;
let coords = vec![(0, 0), (1, 0), (2, 0)];
let point_string = PointString::new(coords);
let edges: Vec<_> = point_string.edges().collect();
assert_eq!(edges, vec![Edge::new((0, 0), (1, 0)), Edge::new((1, 0), (2, 0))]);
sourcepub fn edges_reversed(&self) -> impl Iterator<Item = Edge<T>>
pub fn edges_reversed(&self) -> impl Iterator<Item = Edge<T>>
Same as edges
but in reverse order.
Get the sequence of edges of the point string starting from the last point to the first.
Examples
use iron_shapes::point_string::PointString;
use iron_shapes::edge::Edge;
let coords = vec![(0, 0), (1, 0), (2, 0)];
let point_string = PointString::new(coords);
let edges: Vec<_> = point_string.edges_reversed().collect();
assert_eq!(edges, vec![Edge::new((2, 0), (1, 0)), Edge::new((1, 0), (0, 0))]);
sourceimpl<T> PointString<T> where
T: Copy + Sub<T, Output = T> + NumCast,
impl<T> PointString<T> where
T: Copy + Sub<T, Output = T> + NumCast,
sourcepub fn path_length<F>(&self) -> F where
F: Float,
pub fn path_length<F>(&self) -> F where
F: Float,
Compute geometrical length of the path defined by the point string.
Examples
use iron_shapes::point_string::PointString;
let coords = vec![(0, 0), (1, 0), (2, 0)];
let point_string = PointString::new(coords);
assert_eq!(point_string.path_length::<f64>(), 2.0);
Trait Implementations
sourceimpl<T> Clone for PointString<T> where
T: Clone,
impl<T> Clone for PointString<T> where
T: Clone,
sourcefn clone(&self) -> PointString<T>
fn clone(&self) -> PointString<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<T> Debug for PointString<T> where
T: Debug,
impl<T> Debug for PointString<T> where
T: Debug,
sourceimpl<'de, T> Deserialize<'de> for PointString<T> where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for PointString<T> where
T: Deserialize<'de>,
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<PointString<T>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<PointString<T>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<I, T, P> From<I> for PointString<T> where
T: Copy,
I: IntoIterator<Item = P>,
Point<T>: From<P>,
impl<I, T, P> From<I> for PointString<T> where
T: Copy,
I: IntoIterator<Item = P>,
Point<T>: From<P>,
Create a point string from something that can be turned into an iterator of values convertible to Point
s.
sourcefn from(iter: I) -> PointString<T>
fn from(iter: I) -> PointString<T>
Converts to this type from the input type.
sourceimpl<T, P> FromIterator<P> for PointString<T> where
T: Copy,
P: Into<Point<T>>,
impl<T, P> FromIterator<P> for PointString<T> where
T: Copy,
P: Into<Point<T>>,
Create a point string from a iterator of values convertible to Point
s.
sourcefn from_iter<I>(iter: I) -> PointString<T> where
I: IntoIterator<Item = P>,
fn from_iter<I>(iter: I) -> PointString<T> where
I: IntoIterator<Item = P>,
Creates a value from an iterator. Read more
sourceimpl<T> Hash for PointString<T> where
T: Hash,
impl<T> Hash for PointString<T> where
T: Hash,
sourceimpl<T> MapPointwise<T> for PointString<T> where
T: Copy,
impl<T> MapPointwise<T> for PointString<T> where
T: Copy,
sourceimpl<T> PartialEq<PointString<T>> for PointString<T> where
T: PartialEq<T>,
impl<T> PartialEq<PointString<T>> for PointString<T> where
T: PartialEq<T>,
sourcefn eq(&self, other: &PointString<T>) -> bool
fn eq(&self, other: &PointString<T>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &PointString<T>) -> bool
fn ne(&self, other: &PointString<T>) -> bool
This method tests for !=
.
sourceimpl<T> Serialize for PointString<T> where
T: Serialize,
impl<T> Serialize for PointString<T> where
T: Serialize,
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
sourceimpl<T> TryBoundingBox<T> for PointString<T> where
T: Copy + PartialOrd<T>,
impl<T> TryBoundingBox<T> for PointString<T> where
T: Copy + PartialOrd<T>,
sourcefn try_bounding_box(&self) -> Option<Rect<T>>
fn try_bounding_box(&self) -> Option<Rect<T>>
Compute the bounding box of all the points in this string.
Returns None
if the string is empty.
Examples
use iron_shapes::point_string::PointString;
use iron_shapes::traits::TryBoundingBox;
use iron_shapes::rect::Rect;
let coords = vec![(0, 0), (1, 0), (2, 1), (-1, -3)];
let point_string = PointString::new(coords);
assert_eq!(point_string.try_bounding_box(), Some(Rect::new((2, 1), (-1, -3))));
sourceimpl<T, Dst> TryCastCoord<T, Dst> for PointString<T> where
T: Copy + NumCast,
Dst: CoordinateType + NumCast,
impl<T, Dst> TryCastCoord<T, Dst> for PointString<T> where
T: Copy + NumCast,
Dst: CoordinateType + NumCast,
type Output = PointString<Dst>
type Output = PointString<Dst>
Output type of the cast. This is likely the same geometrical type just with other coordinate types. Read more
sourcefn try_cast(&self) -> Option<<PointString<T> as TryCastCoord<T, Dst>>::Output>
fn try_cast(&self) -> Option<<PointString<T> as TryCastCoord<T, Dst>>::Output>
Try to cast to target data type. Read more
impl<T> Eq for PointString<T> where
T: Eq,
impl<T> StructuralEq for PointString<T>
impl<T> StructuralPartialEq for PointString<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for PointString<T> where
T: RefUnwindSafe,
impl<T> Send for PointString<T> where
T: Send,
impl<T> Sync for PointString<T> where
T: Sync,
impl<T> Unpin for PointString<T> where
T: Unpin,
impl<T> UnwindSafe for PointString<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<S, T> RotateOrtho<T> for S where
T: Copy + Zero + Sub<T, Output = T>,
S: MapPointwise<T>,
impl<S, T> RotateOrtho<T> for S where
T: Copy + Zero + Sub<T, Output = T>,
S: MapPointwise<T>,
sourcefn rotate_ortho(&self, a: Angle) -> S
fn rotate_ortho(&self, a: Angle) -> S
Rotate the geometrical shape by a multiple of 90 degrees.