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; 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,
};

View File

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