Struct PointString

Source
pub struct PointString<T> {
    pub points: Vec<Point<T>>,
}
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>>

The points defining this point string.

Implementations§

Source§

impl<T> PointString<T>

Source

pub fn len(&self) -> usize

Get the number of vertices.

Source

pub fn is_empty(&self) -> bool

Check if string has zero length.

Source§

impl<T> PointString<T>
where T: Copy,

Source

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>>.

Source

pub fn iter(&self) -> Iter<'_, Point<T>>

Shortcut for self.points.iter().

Source

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))]);
Source

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))]);
Source§

impl<T> PointString<T>
where T: Copy + Sub<Output = T> + NumCast,

Source

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§

Source§

impl<T> Clone for PointString<T>
where T: Clone,

Source§

fn clone(&self) -> PointString<T>

Returns a duplicate 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 for PointString<T>
where T: Debug,

Source§

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

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

impl<'de, T> Deserialize<'de> for PointString<T>
where T: Deserialize<'de>,

Source§

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
Source§

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 Points.

Source§

fn from(iter: I) -> PointString<T>

Converts to this type from the input type.
Source§

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 Points.

Source§

fn from_iter<I>(iter: I) -> PointString<T>
where I: IntoIterator<Item = P>,

Creates a value from an iterator. Read more
Source§

impl<T> Hash for PointString<T>
where T: Hash,

Source§

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

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> MapPointwise<T> for PointString<T>
where T: Copy,

Source§

fn transform<F>(&self, tf: F) -> PointString<T>
where F: Fn(Point<T>) -> Point<T>,

Point wise transformation.
Source§

impl<T> PartialEq for PointString<T>
where T: PartialEq,

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T> Serialize for PointString<T>
where T: Serialize,

Source§

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
Source§

impl<T> TryBoundingBox<T> for PointString<T>
where T: Copy + PartialOrd,

Source§

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))));
Source§

impl<T, Dst> TryCastCoord<T, Dst> for PointString<T>
where T: Copy + NumCast, Dst: CoordinateType + NumCast,

Source§

type Output = PointString<Dst>

Output type of the cast. This is likely the same geometrical type just with other coordinate types.
Source§

fn try_cast(&self) -> Option<<PointString<T> as TryCastCoord<T, Dst>>::Output>

Try to cast to target data type. Read more
Source§

fn cast(&self) -> Self::Output

Cast to target data type. Read more
Source§

impl<T> Eq for PointString<T>
where T: Eq,

Source§

impl<T> StructuralPartialEq for PointString<T>

Auto Trait Implementations§

§

impl<T> Freeze for PointString<T>

§

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§

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<S, T> Mirror<T> for S
where T: Copy + Zero + Sub<Output = T>, S: MapPointwise<T>,

Source§

fn mirror_x(&self) -> S

Return the geometrical object mirrored at the x axis.

Source§

fn mirror_y(&self) -> S

Return the geometrical object mirrored at the y axis.

Source§

impl<S, T> RotateOrtho<T> for S
where T: Copy + Zero + Sub<Output = T>, S: MapPointwise<T>,

Source§

fn rotate_ortho(&self, a: Angle) -> S

Rotate the geometrical shape by a multiple of 90 degrees.
Source§

impl<S, T> Scale<T> for S
where T: Copy + Mul<Output = T>, S: MapPointwise<T>,

Source§

fn scale(&self, factor: T) -> S

Scale the geometrical shape. Scaling center is the origin (0, 0).
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

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<S, T> Translate<T> for S
where T: Copy + Add<Output = T>, S: MapPointwise<T>,

Source§

fn translate(&self, v: Vector<T>) -> S

Translate the geometrical object by a vector v.
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

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>,

Source§

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.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> IdType for T
where T: Debug + Clone + Eq + Hash + 'static,

Source§

impl<T> IdTypeMT for T
where T: IdType + Sync + Send,

Source§

impl<T> TextType for T
where T: Eq + Hash + Clone + Debug,