Consolidate redundant re-exports

This commit is contained in:
Hanno Braun 2023-05-04 12:41:51 +02:00
parent fcfff0a7f5
commit 1ddaea98f0
2 changed files with 12 additions and 17 deletions

View File

@ -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;

View File

@ -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,