pub trait Transformation {
    // Required methods
    fn rotate(&mut self, rotate_quatd: &UnitQuaternion<f64>);
    fn translate(&mut self, translate_matrix: &Translation<f64, 3>);
}
Expand description

Transformation for atoms and lattices.

Required Methods§

source

fn rotate(&mut self, rotate_quatd: &UnitQuaternion<f64>)

source

fn translate(&mut self, translate_matrix: &Translation<f64, 3>)

Implementors§