mirror of https://github.com/hannobraun/Fornjot
Consolidate redundant re-exports
This commit is contained in:
parent
fcfff0a7f5
commit
1ddaea98f0
|
@ -1,15 +1,6 @@
|
||||||
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;
|
||||||
mod surface;
|
pub mod surface;
|
||||||
|
|
||||||
pub use self::{
|
|
||||||
cycle::BuildCycle,
|
|
||||||
edge::BuildHalfEdge,
|
|
||||||
face::{BuildFace, Polygon},
|
|
||||||
shell::{BuildShell, TetrahedronShell},
|
|
||||||
solid::{BuildSolid, Tetrahedron},
|
|
||||||
surface::BuildSurface,
|
|
||||||
};
|
|
||||||
|
|
|
@ -7,8 +7,12 @@ mod update;
|
||||||
|
|
||||||
pub use self::{
|
pub use self::{
|
||||||
build::{
|
build::{
|
||||||
BuildCycle, BuildFace, BuildHalfEdge, BuildShell, BuildSolid,
|
cycle::BuildCycle,
|
||||||
BuildSurface, Polygon, Tetrahedron, TetrahedronShell,
|
edge::BuildHalfEdge,
|
||||||
|
face::{BuildFace, Polygon},
|
||||||
|
shell::{BuildShell, TetrahedronShell},
|
||||||
|
solid::{BuildSolid, Tetrahedron},
|
||||||
|
surface::BuildSurface,
|
||||||
},
|
},
|
||||||
insert::{Insert, IsInserted, IsInsertedNo, IsInsertedYes},
|
insert::{Insert, IsInserted, IsInsertedNo, IsInsertedYes},
|
||||||
join::JoinCycle,
|
join::JoinCycle,
|
||||||
|
|
Loading…
Reference in New Issue