tek/crates/tek/src/space.rs

30 lines
1.2 KiB
Rust

pub(crate) mod coord; pub(crate) use coord::*;
pub(crate) mod size; pub(crate) use size::*;
pub(crate) mod area; pub(crate) use area::*;
pub(crate) mod direction; pub(crate) use direction::*;
// TODO: return impl Point and impl Size instead of [N;x]
// to disambiguate between usage of 2-"tuple"s
//////////////////////////////////////////////////////
pub(crate) mod align; pub(crate) use align::*;
pub(crate) mod bsp; pub(crate) use bsp::*;
pub(crate) mod cond; pub(crate) use cond::*;
pub(crate) mod fill; pub(crate) use fill::*;
pub(crate) mod fixed; pub(crate) use fixed::*;
pub(crate) mod inset_outset; pub(crate) use inset_outset::*;
pub(crate) mod layers; pub(crate) use layers::*;
pub(crate) mod measure; pub(crate) use measure::*;
pub(crate) mod min_max; pub(crate) use min_max::*;
pub(crate) mod push_pull; pub(crate) use push_pull::*;
pub(crate) mod scroll; pub(crate) use scroll::*;
pub(crate) mod shrink_grow; pub(crate) use shrink_grow::*;
pub(crate) mod split; pub(crate) use split::*;
pub(crate) mod stack; pub(crate) use stack::*;
pub use self::{
align::*,
bsp::*,
fill::*,
};