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},
|
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,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
@ -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,
|
|
||||||
};
|
|
||||||
|
|
Loading…
Reference in New Issue