pub trait AxisTool: Tool {
    // Required methods
    fn rotate_abs(&mut self, gamma: Gamma);
    fn gamma(&self) -> Gamma;
}
Expand description

A trait for tools that add an additional axis for exact positioning

Required Methods§

source

fn rotate_abs(&mut self, gamma: Gamma)

Rotate the axis to an exact position

source

fn gamma(&self) -> Gamma

Return the exact position of the axis

Implementors§