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}, insert::{Insert, IsInserted, IsInsertedNo, IsInsertedYes},
join::cycle::JoinCycle, join::cycle::JoinCycle,
update::{ update::{
UpdateCycle, UpdateFace, UpdateHalfEdge, UpdateShell, UpdateSolid, cycle::UpdateCycle, edge::UpdateHalfEdge, face::UpdateFace,
shell::UpdateShell, solid::UpdateSolid,
}, },
}; };

View File

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