pub trait Transformation {
    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§

Implementors§