mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-07 12:16:42 +01:00
wip: big flat pt.4: extract layout crate
This commit is contained in:
parent
cb680ab096
commit
34e731f111
21 changed files with 2125 additions and 83 deletions
18
layout/src/lib.rs
Normal file
18
layout/src/lib.rs
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
pub use ::tek_engine;
|
||||
pub(crate) use ::tek_engine::*;
|
||||
|
||||
pub(crate) use std::ops::{Add, Sub, Mul, Div};
|
||||
pub(crate) use std::fmt::{Display, Debug};
|
||||
pub(crate) use std::marker::PhantomData;
|
||||
pub(crate) use std::sync::atomic::Ordering::*;
|
||||
|
||||
mod collection; pub use self::collection::*;
|
||||
mod direction; pub use self::direction::*;
|
||||
mod layers; pub use self::layers::*;
|
||||
mod logic; pub use self::logic::*;
|
||||
mod space; pub use self::space::*;
|
||||
mod transform; pub use self::transform::*;
|
||||
|
||||
#[cfg(test)] #[test] fn test_layout () -> Usually<()> {
|
||||
Ok(())
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue