mermin-core 0.3.0

Core types and traits for k-atic alignment analysis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// mermin-core/src/lib.rs

//! Core types, traits, and error handling for mermin.

pub mod cell;
pub mod contour;
pub mod error;
pub mod field;
pub mod types;

pub use cell::CellRecord;
pub use contour::BoundaryContour;
pub use error::{MerminError, Result};
pub use field::ImageField;
pub use types::{K_HEXATIC, K_NEMATIC, K_POLAR, K_TETRATIC, KValue, Point2, Real};