mirror of https://github.com/hannobraun/Fornjot
Consolidate redundant re-exports
This commit is contained in:
parent
dff88af85b
commit
f55069e875
|
@ -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,
|
||||
},
|
||||
};
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue