[][src]Struct gchemol_neighbors::Neighborhood

pub struct Neighborhood { /* fields omitted */ }

Neighborhood is a neighboring nodes detector, for given cutoff distance.

Methods

impl Neighborhood[src]

pub fn new() -> Self[src]

Constructs a neighborhood detector using the given cutoff distance.

pub fn update<I>(&mut self, iter: I) where
    I: IntoIterator<Item = (usize, Point)>, 
[src]

Automatically build and update Neighborhood with contents of an iterator.

The position of a point is associated with a permanent key in type of usize.

pub fn neighbors(
    &self,
    n: usize,
    radius: f64
) -> impl Iterator<Item = Neighbor> + '_
[src]

Return a list of the nodes connected to the node n.

Parameters

  • n: the key of host node for searching neighbors
  • radius: cutoff radius distance

pub fn search(
    &self,
    pt: Point,
    radius: f64
) -> impl Iterator<Item = Neighbor> + '_
[src]

Return neighbors of a particle pt within distance cutoff radius.

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

Return current number of points.

pub fn set_lattice(&mut self, mat: [[f64; 3]; 3])[src]

Set lattice for applying periodic boundary conditions

Trait Implementations

impl Clone for Neighborhood[src]

impl Debug for Neighborhood[src]

impl Default for Neighborhood[src]

Auto Trait Implementations

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> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,