Struct libreda_db::prelude::RegularRepetition[][src]

pub struct RegularRepetition<T> where
    T: CoordinateType
{ /* fields omitted */ }

Describe a equi-spaced n*m two-dimensional repetition as a lattice. The offsets are computed as (i*a, j*b) for i in 0..n and j in 0..m. a and b the distance vectors between two neighbouring points.

Implementations

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

pub fn new(a: Vector<T>, b: Vector<T>, n: u32, m: u32) -> RegularRepetition<T>[src]

Create a new lattice based repetition.

Parameters

  • a, b: Lattice vectors.
  • n, m: Number of repetitions in directions a and b.

pub fn new_rectilinear(
    spacing_x: T,
    spacing_y: T,
    num_x: u32,
    num_y: u32
) -> RegularRepetition<T>
[src]

Create a repetition along the x and y axis.

Example

use iron_shapes::prelude::RegularRepetition;

let rep = RegularRepetition::new_rectilinear(1, 1, 1, 2);
assert_eq!(rep.len(), 2);
let offsets: Vec<_> = rep.iter().collect();

assert_eq!(offsets, [(0, 0).into(), (0, 1).into()]);

pub fn iter(self) -> impl Iterator<Item = Vector<T>>[src]

Iterate over each offsets of this repetition.

pub fn len(&self) -> usize[src]

Return the number of offsets in this repetition.

Trait Implementations

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

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

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

impl<T> Eq for RegularRepetition<T> where
    T: Eq + CoordinateType
[src]

impl<T> Hash for RegularRepetition<T> where
    T: Hash + CoordinateType
[src]

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

impl<T> StructuralEq for RegularRepetition<T> where
    T: CoordinateType
[src]

impl<T> StructuralPartialEq for RegularRepetition<T> where
    T: CoordinateType
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for RegularRepetition<T> where
    T: RefUnwindSafe

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

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

impl<T> Unpin for RegularRepetition<T> where
    T: Unpin

impl<T> UnwindSafe for RegularRepetition<T> where
    T: UnwindSafe

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> TextType for T where
    T: Clone + Eq + Debug + Hash
[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.