1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
/// The crate provides an azimuthal integrator and distortion corrector of diffraction data
/// acquired with 2D detectors.
/// This is mainly redo of the grate Python library pyFAI in the Rust programming language:
/// https://pyfai.readthedocs.io
/// This is library is intended to be used mainly in the SNBL integration server Bubble:
/// https://soft.snbl.eu/bubble.html
pub mod distortion;
pub mod integrator;
pub mod poni;
pub mod spline;
pub mod utils;