[][src]Struct bader::atoms::ReducedLattice

pub struct ReducedLattice {
    pub shift_matrix: Vec<Vec<usize>>,
    pub cartesian_shift_matrix: [[f64; 3]; 27],
    pub distance_matrix: [f64; 26],
    pub to_cartesian: [[f64; 3]; 3],
    pub to_fractional: [[f64; 3]; 3],
}

Stores the lll-reduced lattice.

Fields

shift_matrix: Vec<Vec<usize>>

The shifts required to move around the reduced basis.

cartesian_shift_matrix: [[f64; 3]; 27]

The cartesian representation of the shifts.

distance_matrix: [f64; 26]

The length of these shifts.

to_cartesian: [[f64; 3]; 3]

Transformation matrix for converting to cartesian coordinates.

to_fractional: [[f64; 3]; 3]

Transformation matrix for converting to fractional coordinates.

Implementations

impl ReducedLattice[src]

pub fn from_lattice(lattice: &Lattice) -> Self[src]

Creates a lll-reduced lattice from the cell lattice.

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