moyo 0.3.1

Library for Crystal Symmetry in Rust
Documentation
mod arithmetic_crystal_class;
mod centering;
mod classification;
mod hall_symbol;
mod hall_symbol_database;
mod magnetic_hall_symbol_database;
mod magnetic_space_group;
mod point_group;
mod setting;
mod wyckoff;

pub use arithmetic_crystal_class::ArithmeticNumber;
pub use centering::Centering;
pub use hall_symbol::{HallSymbol, MagneticHallSymbol};
pub use hall_symbol_database::{hall_symbol_entry, HallNumber, HallSymbolEntry, Number};
pub use magnetic_hall_symbol_database::{magnetic_hall_symbol_entry, MagneticHallSymbolEntry};
pub use magnetic_space_group::{
    get_magnetic_space_group_type, ConstructType, UNINumber, NUM_MAGNETIC_SPACE_GROUP_TYPES,
};
pub use setting::Setting;

pub(super) use arithmetic_crystal_class::{
    arithmetic_crystal_class_entry, iter_arithmetic_crystal_entry,
};
pub(super) use classification::{CrystalSystem, GeometricCrystalClass, LatticeSystem};
pub(super) use magnetic_space_group::uni_number_range;
pub(super) use point_group::PointGroupRepresentative;
pub(super) use wyckoff::{iter_wyckoff_positions, WyckoffPosition, WyckoffPositionSpace};