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;
|
||||
mod edge;
|
||||
mod face;
|
||||
mod shell;
|
||||
mod solid;
|
||||
mod surface;
|
||||
|
||||
pub use self::{
|
||||
cycle::BuildCycle,
|
||||
edge::BuildHalfEdge,
|
||||
face::{BuildFace, Polygon},
|
||||
shell::{BuildShell, TetrahedronShell},
|
||||
solid::{BuildSolid, Tetrahedron},
|
||||
surface::BuildSurface,
|
||||
};
|
||||
pub mod cycle;
|
||||
pub mod edge;
|
||||
pub mod face;
|
||||
pub mod shell;
|
||||
pub mod solid;
|
||||
pub mod surface;
|
||||
|
|
|
@ -7,8 +7,12 @@ mod update;
|
|||
|
||||
pub use self::{
|
||||
build::{
|
||||
BuildCycle, BuildFace, BuildHalfEdge, BuildShell, BuildSolid,
|
||||
BuildSurface, Polygon, Tetrahedron, TetrahedronShell,
|
||||
cycle::BuildCycle,
|
||||
edge::BuildHalfEdge,
|
||||
face::{BuildFace, Polygon},
|
||||
shell::{BuildShell, TetrahedronShell},
|
||||
solid::{BuildSolid, Tetrahedron},
|
||||
surface::BuildSurface,
|
||||
},
|
||||
insert::{Insert, IsInserted, IsInsertedNo, IsInsertedYes},
|
||||
join::JoinCycle,
|
||||
|
|
Loading…
Reference in New Issue