remove LayoutSplit; merge split and bsp modules

This commit is contained in:
🪞👃🪞 2024-12-30 12:54:19 +01:00
parent 0c9c386a79
commit 35a88cb70f
8 changed files with 117 additions and 154 deletions

View file

@ -8,7 +8,6 @@ use std::fmt::{Display, Debug};
//////////////////////////////////////////////////////
pub(crate) mod align;
pub(crate) mod bsp;
pub(crate) mod cond; pub(crate) use cond::*;
pub(crate) mod fill;
pub(crate) mod fixed; pub(crate) use fixed::*;
@ -25,8 +24,8 @@ pub(crate) mod stack; pub(crate) use stack::*;
pub use self::{
align::*,
bsp::*,
fill::*,
split::*,
};
#[derive(Copy, Clone, PartialEq)]