Skip to main content

mermin_core/
lib.rs

1// mermin-core/src/lib.rs
2
3//! Core types, traits, and error handling for mermin.
4
5pub mod cell;
6pub mod contour;
7pub mod error;
8pub mod field;
9pub mod types;
10
11pub use cell::CellRecord;
12pub use contour::BoundaryContour;
13pub use error::{MerminError, Result};
14pub use field::ImageField;
15pub use types::{K_HEXATIC, K_NEMATIC, K_POLAR, K_TETRATIC, KValue, Point2, Real};