Consolidate redundant re-exports

This commit is contained in:
Hanno Braun 2023-05-04 12:43:56 +02:00
parent dff88af85b
commit f55069e875
2 changed files with 7 additions and 11 deletions

View File

@ -17,6 +17,7 @@ pub use self::{
insert::{Insert, IsInserted, IsInsertedNo, IsInsertedYes},
join::cycle::JoinCycle,
update::{
UpdateCycle, UpdateFace, UpdateHalfEdge, UpdateShell, UpdateSolid,
cycle::UpdateCycle, edge::UpdateHalfEdge, face::UpdateFace,
shell::UpdateShell, solid::UpdateSolid,
},
};

View File

@ -1,10 +1,5 @@
mod cycle;
mod edge;
mod face;
mod shell;
mod solid;
pub use self::{
cycle::UpdateCycle, edge::UpdateHalfEdge, face::UpdateFace,
shell::UpdateShell, solid::UpdateSolid,
};
pub mod cycle;
pub mod edge;
pub mod face;
pub mod shell;
pub mod solid;